Search Operations

This section covers all the search operations available in the Sky5 Administrator API. The search system is powerful and consistent across all endpoints.

Overview

All endpoints that extend the ProjectionSearchService support these search operations. The syntax is simple and intuitive:

field__operation=value

Operation Categories

1. Basic Operations

Essential operations for exact matches and basic filtering.

2. Comparison Operations

Numeric and date comparisons for range filtering.

3. Calculated Field Operations

Special operations for computed fields (Groups only).

Quick Reference

Operation
Syntax
Description

eq

field=value

Equals (exact match)

ne

field__ne=value

Not equals

gt

field__gt=value

Greater than

ge

field__ge=value

Greater than or equal

lt

field__lt=value

Less than

le

field__le=value

Less than or equal

like

field__like=value

Contains (case-insensitive)

in

field__in=value1,value2

In list

  • Basic Operations - Essential search operations

  • Comparison Operations - Numeric and date comparisons

  • Calculated Fields - Special computed field operations

  • Field Types - Supported data types and their operations