SparqlSpecialQueryType Enumeration |
Types of Special SPARQL Query which may be optimised in special ways by the libraries SPARQL Engines.
Namespace:
VDS.RDF.Query
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public enum SparqlSpecialQueryType
Public Enumeration SparqlSpecialQueryType
Members
| Member name | Value | Description |
---|
| DistinctGraphs | 0 |
The Query is of the form SELECT DISTINCT ?g WHERE {GRAPH ?g {?s ?p ?o}}
|
| NotApplicable | 1 |
The Query has no applicable special optimisation
|
| Unknown | 2 |
The Query has not yet been tested to determine if special optimisations are applicable
|
| AskAnyTriples | 3 |
The Query is of the form ASK WHERE {?s ?p ?o}
|
See Also