Queries

How to Query Content with Filters, Sorting and Pagination

This documentation is based on the FoodCrunch use case. Please open the link below alongside this page to understand the examples.

pageIntroduction and Use Case

Query Options

Squidex has a query engine that allows different query languages. So far, the following query languages are available:

  1. OData Queries - this is the first system implemented using an existing solution that was easy to adapt, these are easier to write in URLs.

  2. JSON Queries are newer and are mainly used for the UI, because they are faster and easier to determine. It is best to use JSON- queries for your client.

Both query languages support the same features:

  1. Filters with complex comparison operators, conjunctions and negations.

  2. Full text search.

  3. Sorting by one or multiple fields.

  4. Skipping items and restricting the size of the result set for pagination.

OData Queries

OData is an open protocol which allows the creation and consumption of queryable and inoperable APIs in a simple, standardized way. It was designed and developed by Microsoft and provides ready-to use-solutions. We have decided to use the Query syntax because we wanted to leverage an existing system and parser and we find it easy to adapt to our needs.

The queries are provided over the URL and have a special syntax. OData query options start with a dollar character, e.g. $filter.

Here's an example:

https://.../api/content/the-foodcrunch-mag/startups?$top=30&$skip=10&$search=delivery

Even though we use OData, we do not support the full capabilities and there are no plans to do so in future. Some features like select, expand or formatting can be handled better with GraphQL.

The full OData convention can be read at:

JSON Queries

JSON queries are passed in as URL encoded JSON objects with the q query parameter. They are much harder to read for humans, but easier and faster to parse. This was introduced when a new query editor was implemented for the Management UI.

Here's an example:

https://.../api/content/the-foodcrunch-mag/startups?q=%7B%22fullText%22%3A%22website%22%2C%22take%22%3A10%2C%22sort%22%3A%5B%5D%2C%22filter%22%3A%7B%22and%22%3A%5B%5D%7D%7

As you can see it is horrible to read, therefore we will just show normal JSON examples from now on.

Content Structure

Let's demonstrate the API concepts based on our FoodCrunch App use case. The app has two schemas, we will consider the startups schema which contains a database of startups in the food space.

The schema has the following fields:

NameTypeLocalizableDescription

slug

String

No

A single slug for Google friendly URLs.

name

String

No

The name of the startup.

description

String

Yes

The description of the startup.

stage

String

No

Current startup stage

funding

Number

No

The total funding in Millions (USD).

founded

Number

No

Year when the startup was founded.

founders

Array

No

The founders as list of name and position.

tags

Tags

No

A list of tags for search.

location

Geolocation

No

The geolocation of the headquarter.

metadata

JSON

No

Unstructured metadata.

givenUp

Boolean

No

Indicates whether the startup has given up.

Then, your content will have the following structure in the API:

{
    "id": "7802056f",
    "created": "2022-12-31T08:00:52Z",
    "createdBy": ".....",
    "lastModified": "2023-01-09T19:29:05Z",
    "lastModifiedBy": ".....",
    "data": {
        "slug": {
            "iv": "foodco"
        },
        "name": {
            "iv": "FoodCo"
        },
        "description": {
            "en": "FoodCo aims to revolutionize the way we eat. Their innovative products focus on sustainability.",
            "de": "FoodCo zielt darauf ab, die Art und Weise, wie wir essen, zu revolutionieren. Ihre innovativen Produkte setzen auf Nachhaltigkeit.",
            "it": null,
            "sv": "FoodCo har som mål att revolutionera vårt sätt att äta. Deras innovativa produkter fokuserar på hållbarhet."
        },
        "stage": {
            "iv": "Early"
        },
        "founded": {
            "iv": 2019
        },
        "funding": {
            "iv": 234
        },
        "founders": {
            "iv": [
                {
                    "name": "John Doe",
                    "position": null
                }
            ]
        },
        "tags": {
            "iv": [
                "sustainability"
            ]
        },
        "location": {
            "iv": {
                "latitude": 32.0237703,
                "longitude": -92.0390231
            }
        },
        "metadata": {
            "iv": null
        },
        "givenUp": {
            "iv": null
        }
    }
}

Please note, that there is one object for each field because each field has a partitioning. This defines how the field is structured. The most simple partitioning is the invariant partition, which only allows a single key iv.

If the field is localizable, use the languages codes from the languages that you defined in your App settings as keys.

Read more about localization here:

pageLocalization

How to Identity Fields

To identify the field of our content item, use the full path to this field, separated by hashes.

For example:

  • id

  • createdBy

  • data/name/iv

  • data/description/en

  • data/description/de

  • data/founded/iv

Special Cases

Dot Notation in JSON Queries

When you use JSON queries, you can also use the dot-notation to create a syntax that is closer to Javascript and other programming languages. It is best to use this notation.

For example:

  • data.name.iv

OData Restrictions

In OData dash characters (-) are not allowed. Therefore, you should replace them with underscore in your queries.

For example, if there was a field called acquired-by we would use:

  • data/acquired_by/ivin OData

  • data.acquired-by.ivin JSON

Query Features

Limiting the Number of Results

The examples here used the startups schema of the FoodCrunch use case.

The top / take query option requests the number of items in the queried collection to be included in the result. The default value is 20 and the maximum allowed value is 200.

https://.../api/content/the-foodcrunch-mag/startups?$top=30

Because of an error the parameter is called top in OData and take in JSON.

Skipping Items in the Result Set

The skip query option requests the number of items in the queried collection to be skipped and not included in the result. Use this together with top / take to read all your data page by page.

https://.../api/content/the-foodcrunch-mag/startups?$skip=20

Example of skip combined with top / take:

https://.../api/content/the-foodcrunch-mag/startups?$skip=20&$top=30

Get Random Items

You can get random items using the randomoption:

https://.../api/content/the-foodcrunch-mag/startups?$random=5

The random operator picks elements from the result set (not from the entire database).

For example, this query returns 5 random items from the first 200 elements with the default order:

https://.../api/content/the-foodcrunch-mag/startups?$random=5&$top=200

Full Text Searches

The search query option allows clients to request entities matching a free-text search expression. We add the data of all fields for all keys to a single field in the database and use this combined field to implement the full text search.

https://.../api/content/the-foodcrunch-mag/startups?$search=delivery

You can either use search or filter but not both.

Filters

The filter system query option allows clients to filter a collection of resources that are addressed by a request URL.

For example, find all the startups in the Seed stage.

https://.../api/content/the-foodcrunch-mag/startups?$filter=data/stage/iv eq Seed

For example, find all the startups with a funding of more than 100 million USD.

https://.../api/content/the-foodcrunch-mag/startups?$filter=data/funding/iv gt 100

For example, find all the startups with a funding of less than 10 million USD.

https://.../api/content/the-foodcrunch-mag/startups?$filter=data/funding/iv lt 10

Array

If you have fields that have an array of values, for example, references that are represented as an array of content IDs, you can still use the equal operator. The API will return a content item if at least one item in the array is equal to the passed in value.

An example of filtering by tags:

https://.../api/content/the-foodcrunch-mag/startups?$filter=data/tags/iv eq 'Home Delivery'

You can either use search or filter but not both.

More Examples

  • Example demonstrating an array (components, array fields, references, assets, strings) cannot be empty:

$filter=empty(data/founders/iv)
$filter=empty(data/founders/iv) eq true
$filter=empty(data/founders/iv) eq false // Not empty
$filter=not empty(data/founders/iv)      // Not empty
  • Example demonstrating a date must match value:

$filter=created eq 2023-01-19T12:00:00Z
  • Example demonstrating a date must match one of many values:

$filter=created in ('2023-01-19T12:00:00Z', '2022-01-19T12:00:00Z')
  • Example demonstrating an ID must match value:

$filter=id eq B5FE25E3-...
---
$filter=id in (B5FE25E3-..., 311DD333-...)
  • Example demonstrating a name must match string value:

$filter=data/name/iv eq 'Uber Eats'
  • Example demonstrating a boolean must match value:

$filter=data/givenUp/iv eq true
  • Example demonstrating a number must match a value:

$filter=data/funding/iv eq 500
  • Examples of string property demonstrating startswith, endswith or contains :

$filter=startswith(data/founded/iv, '202')
$filter=startswith(data/founded/iv, '202') eq true // Aquivalent
---
$filter=endswith(data/founded/en, '022')
---
$filter=contains(data/description/en, 'catering')

contains, startsWith and endsWith are always case insensitive.

  • Examples of string property matching a regex pattern:

$filter=matchs(data/name/iv, 'a-z') // Case insensitive
---
$filter=matchs(data/name/iv, '/a-z/') // Case sensitive
---
$filter=matchs(data/name/iv, '/a-z/i') // Case insensitive
  • Examples of using operators with false / negation In OData these operators can also be compared with false. In JSON queries you must use a not operation to negate your filter expression.

$filter=contains(data/name/iv, 'Uber Eats') eq false
---
not contains(data/name/iv, 'Uber Eats')

In OData single quotes (') in text values must be replaced with double single quotes.

  • Example of Geolocation within radius:

// Point is defined as POINT(longitude latitude)
geo.distance(data/location/iv, geography'POINT(11.576124 48.137154)') lt 1000
  • Examples of various conditions

$filter=data/funding/iv ne 100 // Not equals
---
$filter=data/funding/iv eq 100 // Equals
---
$filter=data/funding/iv lt 100 // Less than
---
$filter=data/funding/iv le 100 // Less or equals than
---
$filter=data/funding/iv gt 100 // Greater than
---
$filter=data/funding/iv ge 100 // Greater or equals than
  • Examples of combining conditions:

// AND: Both condition must be true
$filter=data/funding/iv eq 100 and data/givenUp/iv eq true 

// OR: One condition must be true
$filter=data/funding/iv eq 100 or data/givenUp/iv eq true 
  • Examples of negations

not endswith(data/name/iv, 'Food')

Sorting

The orderby or sorting query option allows clients to request resources in a particular order.

For example, find the top 20 most funded startups:

https://.../api/content/the-foodcrunch-mag/startups?$orderby=data/funding/iv desc$top=20

You can also sort by multiple fields.

https://.../api/content/the-foodcrunch-mag/startups?$orderby=data/funding/iv desc,data/name/iv asc$top=20

Published Items

By default, the content API only returns published content. You can also use the X-Unpublished header to return draft content.

Versioning

The API tracks the version of each content element and provides this information in the ETag content header if you create an update (POST, PUT, PATCH) or if you request a single resource. If you request multiple resources, the version is provided as a field to each entry.

You can use this header for two use cases:

  1. When you create an update, you get the new version. This information can be used to find out if your change has already been written to the read store when you receive the same resource following your update.

  2. When you create an update, you can use the If-Match header to pass the expected version to the API. If the version does not match the version in the database, this means that another user or client has changed the same resource. In which case, the 412 (Precondition Failed) status code is returned. You should provide this information to the user and ask if the user wants to reload the data or if the resource should be overwritten (but don't use the If-Match header for the second request).

Read more about the If-Match header at:

Last updated