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?)