Uses of Class
com.arangodb.model.AqlQueryOptions
-
Packages that use AqlQueryOptions Package Description com.arangodb com.arangodb.model -
-
Uses of AqlQueryOptions in com.arangodb
Methods in com.arangodb with parameters of type AqlQueryOptions Modifier and Type Method Description <T> ArangoCursor<T>
ArangoDatabase. query(String query, Class<T> type, AqlQueryOptions options)
Performs a database query using the givenquery
, then returns a newArangoCursor
instance for the result list.<T> ArangoCursor<T>
ArangoDatabase. query(String query, Class<T> type, Map<String,Object> bindVars, AqlQueryOptions options)
Performs a database query using the givenquery
andbindVars
, then returns a newArangoCursor
instance for the result list. -
Uses of AqlQueryOptions in com.arangodb.model
Methods in com.arangodb.model that return AqlQueryOptions Modifier and Type Method Description AqlQueryOptions
AqlQueryOptions. allowDirtyRead(Boolean allowDirtyRead)
AqlQueryOptions
AqlQueryOptions. batchSize(Integer batchSize)
static AqlQueryOptions
OptionsBuilder. build(AqlQueryOptions options, String query, Map<String,Object> bindVars)
AqlQueryOptions
AqlQueryOptions. cache(Boolean cache)
AqlQueryOptions
AqlQueryOptions. count(Boolean count)
AqlQueryOptions
AqlQueryOptions. failOnWarning(Boolean failOnWarning)
AqlQueryOptions
AqlQueryOptions. fillBlockCache(Boolean fillBlockCache)
AqlQueryOptions
AqlQueryOptions. fullCount(Boolean fullCount)
AqlQueryOptions
AqlQueryOptions. intermediateCommitCount(Long intermediateCommitCount)
AqlQueryOptions
AqlQueryOptions. intermediateCommitSize(Long intermediateCommitSize)
AqlQueryOptions
AqlQueryOptions. maxPlans(Integer maxPlans)
AqlQueryOptions
AqlQueryOptions. maxRuntime(Double timeout)
AqlQueryOptions
AqlQueryOptions. maxTransactionSize(Long maxTransactionSize)
AqlQueryOptions
AqlQueryOptions. maxWarningCount(Long maxWarningCount)
AqlQueryOptions
AqlQueryOptions. memoryLimit(Long memoryLimit)
AqlQueryOptions
AqlQueryOptions. profile(Boolean profile)
AqlQueryOptions
AqlQueryOptions. query(String query)
AqlQueryOptions
AqlQueryOptions. rules(Collection<String> rules)
AqlQueryOptions
AqlQueryOptions. satelliteSyncWait(Double satelliteSyncWait)
AqlQueryOptions
AqlQueryOptions. shardIds(String... shardIds)
Restrict query to shards by given ids.AqlQueryOptions
AqlQueryOptions. skipInaccessibleCollections(Boolean skipInaccessibleCollections)
AqlQueryOptions
AqlQueryOptions. stream(Boolean stream)
AqlQueryOptions
AqlQueryOptions. streamTransactionId(String streamTransactionId)
AqlQueryOptions
AqlQueryOptions. ttl(Integer ttl)
Methods in com.arangodb.model with parameters of type AqlQueryOptions Modifier and Type Method Description static AqlQueryOptions
OptionsBuilder. build(AqlQueryOptions options, String query, Map<String,Object> bindVars)
-