I was looking at the rest api for bites and was a little confused by the following. Probably just a missing comma.
Accepts a multipart/form-data request with a part specifying a name of "upload" a fileName specifying the desired file name in the doc store.
So it accepts a single parameter named "upload" that specifies the path to the file that will also be used as the name of the file? I'm guessing this is equivalent to the following command.
stardog doc put myDb myDoc.pdf
Is there an option to rename the document like the stardog command
stardog doc put myDb --name myNewName.pdf myDoc.pdf
I was also wondering if there was a way to specify the extractors to use. I'm guessing there is but it looks like the apiary documentation shows "v5". I'm not sure if that is reflecting Stardog version 5 or if the apiary docs are versioned separately.