FacetRequestOptions Class
- java.lang.Object
- com.microsoft.azure.management.resourcegraph.v2019_04_01.FacetRequestOptions
public class FacetRequestOptions
The options for facet evaluation.
Constructors
| FacetRequestOptions() | ||
Methods
| filter() |
Get specifies the filter condition for the 'where' clause which will be run on main query's result, just before the actual faceting. |
| sortBy() |
Get the column name or query expression to sort on. |
| sortOrder() |
Get the sorting order by the selected column (count by default). |
| top() |
Get the maximum number of facet rows that should be returned. |
| withFilter(String filter) |
Set specifies the filter condition for the 'where' clause which will be run on main query's result, just before the actual faceting. |
| withSortBy(String sortBy) |
Set the column name or query expression to sort on. |
| withSortOrder(FacetSortOrder sortOrder) |
Set the sorting order by the selected column (count by default). |
| withTop(Integer top) |
Set the maximum number of facet rows that should be returned. |