ArangoQuery

avokka.arangodb.ArangoQuery
See theArangoQuery companion object
trait ArangoQuery[F[_], V]

AQL query to be executed

Type parameters

F

effect

V

bind vars

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def cursor[T : VPackDecoder]: F[ArangoCursor[F, T]]

execute the query

execute the query

Type parameters

T

result document

Attributes

Returns

cursor

execute the query

execute the query

Type parameters

T

result document

Attributes

Returns

response

def stream[T : VPackDecoder](implicit evidence$3: VPackDecoder[T], S: ArangoStream[F]): S[F, T]

execute the query with streaming handler

execute the query with streaming handler

Type parameters

T

result document

Value parameters

S

arango stream implementation

Attributes

Returns

stream instance

def withQuery(f: Query[V] => Query[V]): ArangoQuery[F, V]

modify query

modify query

Value parameters

f

update function

Attributes

Returns

modified query

Concrete methods

def batchSize(value: Long): ArangoQuery[F, V]
def count(value: Boolean): ArangoQuery[F, V]