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=valueOperation 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
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
Navigation
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