Hello,
I wonder if someone might be able to verify that I am dealing with blank
node insertion correctly.
When inserting a blank node through the Fuseki web UI I issue the update
query as follows:
INSERT DATA { <_BN364371295477055489> <http://bNodePred> <http://bNodeObj> }
The blank node is then prefixed with a URI <http://example/update-base/:
SELECT * WHERE {?s <http://bNodePred> ?o}
--------------------------------------------------------------------------
| s | o |
==========================================================================
| <http://example/update-base/_BN364371295477055489> | <http://bNodeObj> |
--------------------------------------------------------------------------
When inserting via the API I get a different prefix assigned for the blank
node, prefixed with the working directory:
file:///C:/Users/Jena/_BN364371295477055489
Is this behaviour to be expected, or are there any issues with my insert
statement? Is there any way to avoid the prefixes that are being assigned?
Many Thanks as always.
Regards.