data class SearchQueryOptions(val filters: List<CypherConditionGenerator> = emptyList(), val query: String, val first: Int, val skip: Int?)

Defines how a SearchQuery fetches data

Parameters

filters

filters to apply to the search

query

the search query

first

the maximum number of results to return

skip

the number of results to skip

Constructors

Link copied to clipboard
constructor(filters: List<CypherConditionGenerator> = emptyList(), query: String, first: Int, skip: Int?)

Properties

Link copied to clipboard
Link copied to clipboard
val first: Int
Link copied to clipboard
Link copied to clipboard
val skip: Int?