You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note:** String values in queries must be enclosed in double quotes (`"`). Numeric values do not require quotes. The `GLOB` operator supports pattern matching using `*` as a wildcard character.
243
243
Note that the GLOB operator might be replace by a SQL standard LIKE operator in the future.
244
244
245
+
### Sorting
246
+
247
+
Query results can be sorted by one or more attribute fields in ascending or descending order. Sorting supports both string and numeric attributes, with multi-field sorting following priority order (first field has highest priority).
248
+
249
+
#### Basic Sorting
250
+
251
+
```python
252
+
from arkiv import Arkiv, ASC, DESC, STR, INT, OrderByAttribute, QueryOptions
253
+
254
+
client = Arkiv()
255
+
256
+
# Sort by string attribute (default sorting: ascending)
Arkiv provides near real-time event monitoring for entity lifecycle changes. You can watch for entity creation, updates, extensions, deletions, and ownership changes using callback-based event filters.
0 commit comments