Skip to main content

A query tree structure, along with order and paging specifiers, allows a search to be performed against indexed documents held in ElasticSearch. The query API allows any required sub-query structure to be defined and a comprehensive selection of Operators enable individual field level evaluation.

  • Queries
  • Location searches
  • Sub-queries
  • Ordering
  • Paging
  • Weighting
  • Specifying fields
  • Ordering by distance
  • Complete example
  • HTTP GET queries

Queries

This example demonstrates a simple search using HTTP POST.

JSON
POST: /api/delivery/projects/{projectId}/entries/search

{
    "where": [
        {
            "field": "title",
            "contains": "Batman"
        },
        {
            "field": "runtime",
            "greaterThan": 200
        }
    ]
}

Searches can also be carried out using HTTP GET queries.

Location searches

Search for locations within a radius of a specified location.

Supported distance units

UnitSearch value
Milemi or miles
Yardyd or yards
Feetft or feet
Inchin or inch
Kilometerkm or kilometers
Meterm or meters
Centimetercm or centimeters
Millimetermm or millimeters
Nautical mileNM, nmi or nauticalmiles

Example

Find all entries which have a location within 10.5 miles of Ludlow Castle's location. Append the search value at the end of the distance specified, so for example "10.5mi" or "10.5miles".

JSON
{
    "where": [{
        "field": "location",
        "distanceWithin": {
            "lat": "52.36700505",
            "lon": "-2.72304296",
            "distance": "10.5mi"
        }
    }]
}

When searching for a location field, you can also order the results by distance.

Sub-queries

A sub-query is a query within another query that is used as a condition to further restrict the results. Effectively they are defined by an explicit nesting of logical operators.

This example demonstrates a simple search with a sub-query:

JSON
{
    "where": [
        {
            "field": "title",
            "contains": "Batman"
        },
        {
            "or": [
                {
                    "field": "releaseDate",
                    "greaterThan": 1960
                },
                {
                    "field": "tagline",
                    "contains": "gotham"
                }
            ]
        }
    ]
}

Ordering

Results can be ordered by one or more fields in an ascending or descending direction. Order clauses are prioritised in the order that they are added. By default, if no order clauses are specified then the entry results are ordered by:

  • A relevancy 'score' for each entry for the search query (from ElasticSearch) in a descending direction
  • The EntryTitle in an ascending direction.

This is the best solution for searches using a search term of some kind as it will promote the most relevant results to the top of the results. However, this can occasionally mean that an odd entry might appear on more than one page as the relevancy score is dynamically calculated on each paged request. As such, if you intend to page through the complete result set without any duplicates you should always specify an order by field.

Ascending order

Order by releaseDate in an ascending direction.

JSON
{
    "orderBy": [{
        "asc": "releaseDate"
    }],
}

Descending order

Order by releaseDate in a descending direction.

JSON
{
    "orderBy": [{
        "desc": "releaseDate"
    }],
}

Paging

Paging allows the number of results to be restricted to a defined count so that the results are easier to handle and ensures a response is returned quickly. If you intend to page through the complete result set without any duplicates you should always specify an order by field.

The page number can also be specified to allow which set of results is to be returned. The page size is limited to a maximum of 10,000 however this is not recommended.

JSON
{
    "pageSize": 50,
    "pageIndex": 1
}

Specifying fields

System fields

System fields such as id, contentTypeId, projectId, versionNo etc. are under the sys object and can be accessed using a dot notation, e.g. sys.id, sys.contentTypeId, sys.projectId, sys.version.versionNo.

The entryTitle and entryDescription fields are dynamic values, determined by the EntryTitleField and EntryDescriptionField values in the content type.

Data fields

Fields defined in the content type for the entry can be accessed by their API id.

All fields

All fields can be searched by specifying an asterisk (*) in the field id. Note, the only supported operator is FreeText.

Example

JSON
POST: /api/delivery/projects/{projectId}/entries/search
{
    "where": [
        {
            "field": "*",
            "equalTo": "Interstellar"
        }
    ]
}

Array fields

Searching on array fields is the same as searching on a child property of a field, you just use the dot notation. All operators support searching across array fields.

Example array field search

This example searches for a quote source of "Bruce Willis" within a quote array field called movieQuote.

JSON
POST: /api/delivery/projects/{projectId}/entries/search
{
    "where": [
        {
            "field": "movieQuote.source",
            "equalTo": "Bruce Willis"
        }
    ]
}

Ordering by distance

When searching by location, to return the search results according to the distance of the location field in each entry from the distance specified in the distanceWithin search, add the location field to the orderBy clause, e.g.

JSON
{
    "where": [{
        "field": "location",
        "distanceWithin": {
            "lat": "52.36700505",
            "lon": "-2.72304296",
            "distance": "10.5mi"
        }
    }],
    "orderBy": [{
        "asc": "location"
    }]
}

The search results will include the distance from the location specified in the distanceWithin search to the location in the entry, in the same units that were specified in the search (but without the distance units). e.g.

JSON
"location": {
        "lat" : 51.209347,
        "lon" : -2.6445979000000079,
        "distance" : 83.292260807739808
}

Complete example

The following example combines the ordering, paging and weighting concepts.

JSON
POST: /api/delivery/projects/{projectId}/entries/search
{
    "where": [
        {
            "field": "title",
            "contains": "Batman",
            "weight": 100
        },
        {
            "field": "synopsis",
            "freeText": "gotham",
            "weight": 30
        },
        {
            "field": "runtime",
            "greaterThan": 200
        }
    ],
    "orderBy": [
        {
            "desc": "releaseDate"
        }
    ],
    "pageIndex": 1,
    "pageSize": 50
}

Specifying fields to return

If you have large entries and only require a subset of fields it is worth limiting the fields returned in the results. This will reduce the size of the payload from the API which in turn will improve performance. The fields returned in the results can be specified using a "fields" clause. You can include fields by specifying the field API ID.

Example of returning the title and synopsis

JSON
{
    "fields": [
        "title",
        "synopsis"
    ]
}

If no fields are specified then all the data fields and system fields for an entry will be returned.

Data fields

Fields defined in the content type for the entry can be specified using their API ID.

System fields

By default all system fields will be returned for an entry.

If you specify -sys, then the following system fields will still be returned as they are the minimum set:

  • sys.id
  • sys.dataFormat
  • sys.language
  • sys.contentTypeId
  • sys.uri

Specific system fields can be specified to be returned by being prefixed with sys., e.g.

JSON
{
    "fields": [
        "sys.uri",
        "sys.owner"
    ]
}

The optional system fields that can be specified are:

  • sys.projectId
  • sys.owner
  • sys.slug
  • sys.isPublished
  • sys.availableLanguages
  • sys.allUris
  • sys.workflow
  • sys.workflow.id
  • sys.workflow.state
  • sys.metadata
  • sys.properties
  • sys.version
  • sys.version.publishedBy
  • sys.version.createdBy
  • sys.version.created
  • sys.version.versionNo
  • sys.version.modified
  • sys.version.modifiedBy
  • sys.version.published

It is not possible to specify individual fields within the properties and metadata fields.

HTTP GET queries

Searches can also be carried out using an HTTP GET query, with the JSON for the individual sections of the query (where, orderBy, pageSize, pageIndex, fields) specified as querystring parameters.

This example demonstrates a simple search using HTTP GET:

JSON
GET: /api/delivery/projects/{projectId}/entries/search?where=[{"field":"title","contains":"Batman"},{"field":"runtime","greaterThan":200}]

This example demonstrates a more complex search using all the search options (including fieldLinkDepths which is only available in Contensis version 16+):

JSON
GET: /api/delivery/projects/{projectId}/entries/search?where=[{"field":"title","contains":"Batman"},{"field":"runtime","greaterThan":200}]&orderBy=[{"asc":"title"}]&pageSize=10&pageIndex=0&fields=entryTitle,entryDescription&linkDepth=1&fieldLinkDepths={"director":2}

N.B. The querystring parameters will need to be URL encoded, this has not been done in the above examples for clarity. When URL encoded the examples look like this:

JSON
GET: /api/delivery/projects/{projectId}/entries/search?where=%5B%7B%22field%22%3A%22title%22%2C%22contains%22%3A%22Batman%22%7D%2C%7B%22field%22%3A%22runtime%22%2C%22greaterThan%22%3A200%7D%5D
JSON
GET: /api/delivery/projects/{projectId}/entries/search?where=%5B%7B%22field%22%3A%22title%22%2C%22contains%22%3A%22Batman%22%7D%2C%7B%22field%22%3A%22runtime%22%2C%22greaterThan%22%3A200%7D%5D%26orderBy%3D%5B%7B%22asc%22%3A%22title%22%7D%5D%26pageSize%3D10%26pageIndex%3D0%26fields%3DentryTitle%2CentryDescription&linkDepth=1&fieldLinkDepths=%7B%22director%22%3A2%7D

Still need help?

If you still need help after reading this article, don't hesitate to reach out to the Contensis community on Slack or raise a support ticket to get help from our team.
New support request