SPARQL RDF Store that follows the RDF/JS Store interface specification. This store implementation allows accessing graphs using the SPARQL 1.1 Protocol. This requires an external triple store.
npm install --save rdf-store-sparqlThe constructor requires a endpointUrl parameter.
It must be a string pointing to the SPARQL endpoint.
Optional an options parameter can be given.
The options object can have the following properties:
- updateUrl: SPARQL endpoint URL for write operations. (Default- endpointUrlparameter)
- factory: RDFJS data factory implementation. (Default the reference implementation- @rdfjs/data-model)
- maxQueryLength: Max length of the- importand- removeMatchesquery. Multiple queries in sequence will be used if when- maxQueryLengthis reached. (Default- Infinity)