Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

RecordQueryFilter

Canonical backend query dialect shared across record store adapters.

Properties

NameTypeDescriptionNotes
whereList[RecordQueryCondition]AND-only list of query predicates.
sortList[RecordQuerySort]Optional list of sort directives applied in order.[optional]
limitintMaximum number of records to return.[optional]
offsetintZero-based row offset for pagination.[optional]

Example

from ce_rise_hex_core_sdk.models.record_query_filter import RecordQueryFilter

# TODO update the JSON string below
json = "{}"
# create an instance of RecordQueryFilter from a JSON string
record_query_filter_instance = RecordQueryFilter.from_json(json)
# print the JSON string representation of the object
print(RecordQueryFilter.to_json())

# convert the object into a dict
record_query_filter_dict = record_query_filter_instance.to_dict()
# create an instance of RecordQueryFilter from a dict
record_query_filter_from_dict = RecordQueryFilter.from_dict(record_query_filter_dict)

[Back to Model list] [Back to API list] [Back to README]