ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying WOQLClient for anything not wrapped here.
Insert data as a new document of type table (a new commit). Returns
whatever addDocument reports (typically the inserted document id(s)).
Fetch the current revision of document <table>/<id>.
Return the commit history for document <table>/<id> via a WOQL query
over the commit graph. Every past revision lives in the immutable commit
chain, so this surfaces the document's provenance.
Verify document <table>/<id> by reading it back from the immutable
store. Returns { id, exists, document } - existence in the commit graph
is the provenance guarantee (TerminusDB never mutates past commits).
Run a raw WOQL query object.
OptionalcommitMsg: string
TerminusdbStorewraps aWOQLClientbehind the shared ledger surface.