Constructor QueryRequest
QueryRequest(int?, int?, bool, List<QueryFilter>, List<QueryOrder>, string)
The body of a Query request which defines how to sort and filter results, how many results to return, etc.
Declaration
[Preserve]
public QueryRequest(int? count = 10, int? skip = 0, bool sampleResults = false, List<QueryFilter> filter = null, List<QueryOrder> order = null, string continuationToken = null)
Parameters
Type | Name | Description |
---|---|---|
int? | count | The number of results to return. |
int? | skip | The number of results to skip before selecting results to return. |
bool | sampleResults | Whether a random sample of results that match the search filter should be returned. |
List<QueryFilter> | filter | A list of filters which can be used to narrow down which lobbies to return. |
List<QueryOrder> | order | A list of orders which define how the results should be ordered in the response. |
string | continuationToken | A continuation token that can be passed to subsequent query requests to fetch the next page of results. |