Execute an ASK query.
The SPARQL ASK query
A promise resolving to true if the query pattern matches; false otherwise
Execute a SELECT query.
The SPARQL SELECT query
A promise resolving to the result tuples
Execute a CONSTRUCT query.
The SPARQL CONSTRUCT query
A promise resolving to the constructed triples
Execute a SPARQL UPDATE operation.
The SPARQL UPDATE request
Execute a task within a repository transaction.
The task receives a per-call Repository bound to a transaction; updates issued through it are applied
within the transaction in order. If the task completes successfully, the transaction commits. If the task
throws or rejects, the transaction rolls back and the error is propagated to the caller as a promise
rejection. Concurrent top-level execute calls run in independent transactions and never share state.
execute is not re-entrant. Transaction boundaries are flat and compositions must share a single outer
call site.
Every implementation must provide execute, but its guarantees are backend-dependent. A backend with native
transactions brackets the task for atomic commit and rollback. A backend without one supplies a degenerate
implementation: the task runs directly against this same Repository, with no atomicity and no
rollback. Either way, each implementation declares the isolation level it provides in its own factory
documentation.
Return type of the task
Async or sync function performing SPARQL operations on the per-call Repository
A promise resolving to the value returned by task; rejects with a
Problem if a transaction, network, storage, or other processing error occurs
Release resources held by this repository.
Frees underlying resources such as database connections or file handles. Calling close on an
already-closed repository has no effect.
Every implementation must provide close, but it is degenerate where there is nothing to release: a backend
that holds no resources implements it as a resolved no-op.
A promise resolving when all resources have been released; rejects with a Problem if a clean-up error occurs
SPARQL repository.
The interface connector packages implement to expose a concrete SPARQL backend: executing SPARQL queries and updates against the backing RDF store, with transactional execute and lifecycle close.
execute provides best-effort transaction isolation: snapshot isolation where the backend supports it, degrading to the maximum level the storage achieves, down to none.
Each implementation must declare its supported isolation level in its factory documentation.
See