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
Copy file name to clipboardExpand all lines: doc/rest-api/index.adoc
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ The following is an overview of the resources that are available from RDF4J Serv
35
35
36
36
== Protocol version
37
37
38
-
The version of the protocol that the server uses to communicate over HTTP is available at: <RDF4J_URL>/protocol. The version described by this chapter is “6”.
38
+
The version of the protocol that the server uses to communicate over HTTP is available at: <RDF4J_URL>/protocol. The version described by this chapter is “8”.
39
39
40
40
Supported methods on this URL are:
41
41
@@ -132,6 +132,9 @@ Parameters:
132
132
- `infer` (optional): Specifies whether inferred statements should be included in the query evaluation. Inferred statements are included by default. Specifying any value other than “true” (ignoring case) restricts the query evluation to explicit statements only.
133
133
- `$<varname>` (optional): specifies variable bindings. Variables appearing in the query can be bound to a specific value outside the actual query using this option. The value should be an N-Triples encoded RDF value.
134
134
- `timeout` (optional): specifies a maximum query execution time, in whole seconds. The value should be an integer. A setting of 0 or a negative number indicates unlimited query time (the default).
135
+
- `distinct` (optional): specifies if only distinct query solutions should be returned. The value should be `true` or `false`. If the supplied SPARQL query itself already has a `DISTINCT` modifier, this parameter will have no effect.
136
+
- `limit` (optional): specifies the maximum number of query solutions to return. The value should be a positive integer. If the supplied SPARQL query itself already has a `LIMIT` modifier, this parameter will only have an effect if the supplied value is lower than the `LIMIT` value in the query.
137
+
- `offset` (optional): specifies the number of query solutions to skip. The value should be a positive inteer. This parameter is cumulative with any `OFFSET` modifier in the supplied SPARQL query itself.
0 commit comments