Click or drag to resize

ICursorApiClientPostCursorAsyncT Method (String, DictionaryString, Object, PostCursorOptions, NullableBoolean, NullableInt64, NullableBoolean, NullableInt64, NullableInt32, String)

Execute an AQL query, creating a cursor which can be used to page query results.

Namespace:  ArangoDBNetStandard.CursorApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
Task<CursorResponse<T>> PostCursorAsync<T>(
	string query,
	Dictionary<string, Object> bindVars = null,
	PostCursorOptions options = null,
	bool? count = null,
	long? batchSize = null,
	bool? cache = null,
	long? memoryLimit = null,
	int? ttl = null,
	string transactionId = null
)

Parameters

query
Type: SystemString
bindVars (Optional)
Type: System.Collections.GenericDictionaryString, Object
options (Optional)
Type: ArangoDBNetStandard.CursorApi.ModelsPostCursorOptions
count (Optional)
Type: SystemNullableBoolean
batchSize (Optional)
Type: SystemNullableInt64
cache (Optional)
Type: SystemNullableBoolean
memoryLimit (Optional)
Type: SystemNullableInt64
ttl (Optional)
Type: SystemNullableInt32
transactionId (Optional)
Type: SystemString
Optional. The stream transaction Id.

Type Parameters

T

Return Value

Type: TaskCursorResponseT
See Also