Jump to: limit | skip | order | where | fields
Limit ↑
A limit filter limits the number of records returned to the specified number (or less).
REST API
?filter[limit]=n
or RQL
?limit=n
Client API
FilterBuilder
.NewFilterBuilder()
.Limit(n)
.Build();
Where n is the maximum number of results (records) to return.
Skip ↑
A skip filter omits the specified number of returned records. This is useful, for example, to paginate responses.
REST API
?filter[skip]=n
or RQL
?skip=n
Client API
FilterBuilder
.NewFilterBuilder()
.Skip(n)
.Build();
Where n is the number of records to skip.
Order ↑
An order filter specifies how to sort the results: ascending (ASC) or descending (DESC) based on the specified property.
REST API
?filter[order]=property ASC
REST API
?filter[order]=property DESC
Order by two or more properties:
REST API
?filter[order][0]=property ASC&filter[order][1]=property DESC
Where property is the name of the property (field) to sort by.
Where ↑
A where filter specifies a set of logical conditions to match, similar to a WHERE clause in a SQL query.
REST API
?filter[where][property]=value
Client API
FilterBuilder
.NewFilterBuilder()
.Where("property".Equal("value"))
.Build();
REST API
?filter[where][property][gt]=value
Client API
FilterBuilder
.NewFilterBuilder()
.Where("property".GreaterThan(value))
.Build();
REST API
?filter[where][property][lt]=value
Client API
FilterBuilder
.NewFilterBuilder()
.Where("property".LessThan(value))
.Build();
Where:
- property is the name of a property (field) in the model being queried.
- value is a literal value.
REST API
?filter[where][and][0][property]=value&filter[where][and][1][property][gt]=value
Client API
FilterBuilder
.NewFilterBuilder()
.Where("property".Equal("value")
.And("property".GreaterThan(value)))
.Build();
REST API
?filter[where][or][0][property]=value&filter[where][or][1][property][lt]=value
Client API
FilterBuilder
.NewFilterBuilder()
.Where("property".Equal("value")
.Or("property".LessThan(value)))
.Build();
⚠ in development!
REST API
?filter[where][or][0][property][gt]=value&filter[where][and][1][property]=value&filter[where][and][2][property][gt]=value
Client API
FilterBuilder
.NewFilterBuilder()
.Where("property".GreaterThan(value)
.Or("property".Equal("value")
.And("property".GreaterThan(value))))
.Build();
Where:
- property is the name of a property (field) in the model being queried.
- value is a literal value.
The inq operator checks whether the value of the specified property matches any of the values provided in an array.
REST API
?filter[where][property][inq]=value1&filter[where][property][inq]=value2
Client API
FilterBuilder
.NewFilterBuilder()
.Where("property".Inq("value1", "value2"))
.Build();
Where:
- property is the name of a property (field) in the model being queried.
- value1, value2, and so on, are literal values in an array.
Fields ↑
A fields filter specifies properties (fields) to include from the results.
REST API
?filter[fields][property]=true
Order by two or more properties:
?filter[fields][property]=true&filter[fields][property]=true
Client API
FilterBuilder
.NewFilterBuilder()
.Select(property)
.Build();
Order by two or more properties:
FilterBuilder
.NewFilterBuilder()
.Select(property, property)
.Build();
Where property is the name of the property (field) to include.
By default, queries return all model properties in results. However, if you specify at least one fields filter with a value of true
, then by default the query will include only those you specifically include with filters.