Skip to main content

ValuesOrderBy

Methods to use when ordering Value.

enum ValuesOrderBy {
NATURAL
ID_ASC
ID_DESC
PROPERTY_ID_ASC
PROPERTY_ID_DESC
ENTITY_ID_ASC
ENTITY_ID_DESC
SPACE_ID_ASC
SPACE_ID_DESC
TEXT_ASC
TEXT_DESC
LANGUAGE_ASC
LANGUAGE_DESC
UNIT_ASC
UNIT_DESC
BOOLEAN_ASC
BOOLEAN_DESC
DECIMAL_ASC
DECIMAL_DESC
POINT_ASC
POINT_DESC
TIME_ASC
TIME_DESC
INTEGER_ASC
INTEGER_DESC
FLOAT_ASC
FLOAT_DESC
BYTES_ASC
BYTES_DESC
DATE_ASC
DATE_DESC
DATETIME_ASC
DATETIME_DESC
SCHEDULE_ASC
SCHEDULE_DESC
EMBEDDING_ASC
EMBEDDING_DESC
TIME_UTC_ASC
TIME_UTC_DESC
DATETIME_UTC_ASC
DATETIME_UTC_DESC
RECT_ASC
RECT_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
}

Values

ValuesOrderBy.NATURAL

No explicit ordering; results return in the database's natural order. Avoid for paginated queries — use a deterministic order instead.

ValuesOrderBy.ID_ASC

Order results by id ascending.

ValuesOrderBy.ID_DESC

Order results by id descending.

ValuesOrderBy.PROPERTY_ID_ASC

Order results by property id ascending.

ValuesOrderBy.PROPERTY_ID_DESC

Order results by property id descending.

ValuesOrderBy.ENTITY_ID_ASC

Order results by entity id ascending.

ValuesOrderBy.ENTITY_ID_DESC

Order results by entity id descending.

ValuesOrderBy.SPACE_ID_ASC

Order results by space id ascending.

ValuesOrderBy.SPACE_ID_DESC

Order results by space id descending.

ValuesOrderBy.TEXT_ASC

Order results by text ascending.

ValuesOrderBy.TEXT_DESC

Order results by text descending.

ValuesOrderBy.LANGUAGE_ASC

Order results by language ascending.

ValuesOrderBy.LANGUAGE_DESC

Order results by language descending.

ValuesOrderBy.UNIT_ASC

Order results by unit ascending.

ValuesOrderBy.UNIT_DESC

Order results by unit descending.

ValuesOrderBy.BOOLEAN_ASC

Order results by boolean ascending.

ValuesOrderBy.BOOLEAN_DESC

Order results by boolean descending.

ValuesOrderBy.DECIMAL_ASC

Order results by decimal ascending.

ValuesOrderBy.DECIMAL_DESC

Order results by decimal descending.

ValuesOrderBy.POINT_ASC

Order results by point ascending.

ValuesOrderBy.POINT_DESC

Order results by point descending.

ValuesOrderBy.TIME_ASC

Order results by time ascending.

ValuesOrderBy.TIME_DESC

Order results by time descending.

ValuesOrderBy.INTEGER_ASC

Order results by integer ascending.

ValuesOrderBy.INTEGER_DESC

Order results by integer descending.

ValuesOrderBy.FLOAT_ASC

Order results by float ascending.

ValuesOrderBy.FLOAT_DESC

Order results by float descending.

ValuesOrderBy.BYTES_ASC

Order results by bytes ascending.

ValuesOrderBy.BYTES_DESC

Order results by bytes descending.

ValuesOrderBy.DATE_ASC

Order results by date ascending.

ValuesOrderBy.DATE_DESC

Order results by date descending.

ValuesOrderBy.DATETIME_ASC

Order results by datetime ascending.

ValuesOrderBy.DATETIME_DESC

Order results by datetime descending.

ValuesOrderBy.SCHEDULE_ASC

Order results by schedule ascending.

ValuesOrderBy.SCHEDULE_DESC

Order results by schedule descending.

ValuesOrderBy.EMBEDDING_ASC

Order results by embedding ascending.

ValuesOrderBy.EMBEDDING_DESC

Order results by embedding descending.

ValuesOrderBy.TIME_UTC_ASC

Order results by time utc ascending.

ValuesOrderBy.TIME_UTC_DESC

Order results by time utc descending.

ValuesOrderBy.DATETIME_UTC_ASC

Order results by datetime utc ascending.

ValuesOrderBy.DATETIME_UTC_DESC

Order results by datetime utc descending.

ValuesOrderBy.RECT_ASC

Order results by rect ascending.

ValuesOrderBy.RECT_DESC

Order results by rect descending.

ValuesOrderBy.PRIMARY_KEY_ASC

Order results by primary key ascending.

ValuesOrderBy.PRIMARY_KEY_DESC

Order results by primary key descending.

Member Of

values query ● valuesConnection query