ModifyQuery |
ModifyQuery.delete(TriplePattern... triples) |
Specify triples to delete (or leave empty for DELETE WHERE shortcut)
|
static ModifyQuery |
Queries.DELETE(TriplePattern... triples) |
Convenience method, creates a SPARQL DELETE query using ModifyQuery.
|
ModifyQuery |
ModifyQuery.from(GraphName graphName) |
Specify the graph to delete triples from
|
ModifyQuery |
ModifyQuery.insert(TriplePattern... triples) |
Specify triples to insert
|
static ModifyQuery |
Queries.INSERT(TriplePattern... triples) |
Convenience method, creates a SPARQL INSERT query using ModifyQuery.
|
ModifyQuery |
ModifyQuery.into(GraphName graphName) |
Specify the graph to insert triples into
|
static ModifyQuery |
Queries.MODIFY() |
Creates a SPARQL Modify query
|
ModifyQuery |
ModifyQuery.using(IRI iri) |
Specify the graph used when evaluating the WHERE clause
|
ModifyQuery |
ModifyQuery.using(Iri iri) |
Specify the graph used when evaluating the WHERE clause
|
ModifyQuery |
ModifyQuery.usingNamed(IRI iri) |
Specify a named graph to use to when evaluating the WHERE clause
|
ModifyQuery |
ModifyQuery.usingNamed(Iri iri) |
Specify a named graph to use to when evaluating the WHERE clause
|
ModifyQuery |
ModifyQuery.where(GraphPattern... patterns) |
Add graph patterns to this query's query pattern
|
ModifyQuery |
ModifyQuery.with(IRI iri) |
Define the graph that will be modified or matched against in the absence of more explicit graph definitions
|
ModifyQuery |
ModifyQuery.with(Iri iri) |
Define the graph that will be modified or matched against in the absence of more explicit graph definitions
|