Filtering and sorting

Use filter and orderBy on list queries, including custom-field conditions, text search, and sort rules that affect pagination cursors.

circle-exclamation

In Navixy Repository API, list queries (those returning multiple items, like devices, assets, or organizations) accept filter and orderBy arguments that let you control which results come back and in what order. Instead of fetching all devices and processing them client-side, you can request exactly what you need.

For navigating through large result sets, see Pagination.

Filtering

Pass a filter argument to any list query to narrow down results:

query {
  devices(
    organizationId: "your-organization-uuid"
    filter: {
      statusIds: ["status-active-uuid"]
    }
  ) {
    nodes {
      id
      title
      status { title }
    }
  }
}

This returns only devices with the specified status.

Each entity type has its own filter input with different available fields. For example, DeviceFilter supports filtering by type, model, status, vendor, and inventory, while OrganizationFilter only supports filtering by parent and active status. Use introspection or the Core API reference to see available filter fields for each entity.

Filtering logic

Filters combine conditions using two types of logic:

Location
Logic
Meaning

Within a field

OR

Match any of the values

Between fields

AND

Match all conditions

Consider this filter:

This translates to:

The result includes active trucks and active vans, but not inactive trucks or vehicles of other types.

Empty values are ignored

If a filter field is null or an empty array, the API ignores it entirely:

This is useful when building dynamic filters — you don't need to conditionally omit empty fields from your query.

Most filters include a titleContains field for partial text matching:

This returns devices with "delivery" anywhere in their title, like "Delivery Van 1" or "North Delivery Truck". The search is case-insensitive.

Some filters have additional text search fields. For example, DeviceFilter includes identifierContains for searching hardware identifiers like IMEI numbers. Unlike titleContains, identifier search is case-sensitive.

Limitations

The API does not support complex boolean expressions with nested AND/OR/NOT operators. If you need more complex filtering logic, apply the most restrictive server-side filter you can, then filter the results further in your application.

Custom field filtering

Entities that support custom fields (devices, assets, geo objects, schedules) can be filtered by custom field values:

Each condition in the customFields array has three parts:

Field
Description

code

The custom field's code, as defined in its CustomFieldDefinition

operator

How to compare the value

value

The value to compare against, formatted as JSON

Operators

Operator
Description

EQ

Equals

NE

Not equals

GT

Greater than

GTE

Greater than or equal

LT

Less than

LTE

Less than or equal

CONTAINS

String contains (case-insensitive)

IN

Matches any value in the provided array

IS_NULL

Field has no value

IS_NOT_NULL

Field has a value

Value formats

The value field accepts JSON. Match the format to your field type:

Field type
JSON format
Example

STRING, TEXT

string

"hello"

NUMBER

number

42 or 3.14

BOOLEAN

boolean

true

DATE

string (YYYY-MM-DD)

"2024-01-15"

DATETIME

string (RFC 3339)

"2024-01-15T10:30:00Z"

OPTIONS

string (option code)

"option_a"

DEVICE, REFERENCE

string (entity ID)

"019a6a3f-..."

CATALOG, TAG

string (item code)

"ITEM_CODE"

For IS_NULL and IS_NOT_NULL operators, omit the value field or set it to null.

Multiple conditions

Multiple custom field conditions are combined with AND logic:

This returns assets where fuel type is diesel AND year is 2020 or later.

Multi-value fields

For custom fields configured to hold multiple values (isMulti: true), the filter matches if any stored value satisfies the condition:

Combining standard and custom filters

You can use standard filter fields and custom field conditions together:

This returns trucks that are active or in maintenance, have "north" in their title, and are assigned to the northwest region.

Sorting

Use the orderBy argument to control the order of results:

The direction can be ASC (ascending: A→Z, 0→9, oldest→newest) or DESC (descending: Z→A, 9→0, newest→oldest).

Each entity type has its own set of sortable fields. For example, devices can be sorted by TITLE, while audit events can be sorted by OCCURRED_AT. Use introspection or the API reference to see available sort fields.

Sort behavior

Text fields use natural sorting with ICU collation:

  • Case-insensitive: "apple" and "Apple" sort together

  • Locale-aware: accented characters sort correctly (é sorts with e, not after z)

  • Numeric-aware: "item2" comes before "item10"

NULL values appear last when sorting ASC, and first when sorting DESC.

Sorting by custom fields

Some entity types (devices, assets, geo objects, schedules) support sorting by custom field values:

Use either field or customFieldCode in your orderBy input, not both — they are mutually exclusive.

Sorting and pagination

Cursors encode the current sort position. If you change orderBy between pagination requests, your existing cursors become invalid. Always use the same orderBy value when paginating through a result set. If you need a different sort order, start from the beginning.

Last updated

Was this helpful?