You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of this, TransactionalRepositoryClient was made to receive only Turtle or TriG encoded data for the DELETE transaction operation.
Planned steps:
Add DeleteStatementsPayload class
Add delete() method in RDFRepositoryClient that accepts the new DeleteStatementsPayload
Add delete() and deleteStatement() in TransactionalRepositoryClient with custom logic that maps the data from DeleteStatementsPayload to appropriate triples according to the specification.
The goal is to make both clients with same API methods and hide the custom logic in TransactionalRepositoryClient.
The text was updated successfully, but these errors were encountered:
The RDF4J REST API specifies different syntax for deleting statements in a transaction.
See https://rdf4j.eclipse.org/documentation/rest-api/#the-delete-operation
Because of this,
TransactionalRepositoryClient
was made to receive only Turtle or TriG encoded data for the DELETE transaction operation.Planned steps:
DeleteStatementsPayload
classdelete()
method inRDFRepositoryClient
that accepts the newDeleteStatementsPayload
delete()
anddeleteStatement()
inTransactionalRepositoryClient
with custom logic that maps the data fromDeleteStatementsPayload
to appropriate triples according to the specification.The goal is to make both clients with same API methods and hide the custom logic in
TransactionalRepositoryClient
.The text was updated successfully, but these errors were encountered: