Query Parameters
An object that represents a database query.
Constructors
Properties
The max number of features the query should return. For consistent ordering of results when using pagination, you should also provide a value for the order by field. Warning: If providing a maximum features value to support paging of results, you should also set a result offset. If maximum features is set, but result offset is not, the result may contain local features in place of server features if they satisfy the query. To ensure strict paging of server features, specify both maximum features and result offset.
The starting offset of results to fetch. For consistent ordering of results when using pagination, you should also provide a value for the order by field. Warning: If providing a result offset to support paging of results, you must also set a maximum features value. If result offset is set, but maximum features is not, the offset will be ignored.
The where clause of the query. The string that is used as the QueryParameters.getWhereClause() should follow standard SQL syntax similar to what is discussed in the document https://pro.arcgis.com/en/pro-app/latest/help/mapping/navigation/sql-reference-for-elements-used-in-query-expressions.htm.