Skip to main content

SubspacesOrderBy

Methods to use when ordering Subspace.

enum SubspacesOrderBy {
NATURAL
PARENT_SPACE_ID_ASC
PARENT_SPACE_ID_DESC
CHILD_SPACE_ID_ASC
CHILD_SPACE_ID_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
}

Values

SubspacesOrderBy.NATURAL

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

SubspacesOrderBy.PARENT_SPACE_ID_ASC

Order results by parent space id ascending.

SubspacesOrderBy.PARENT_SPACE_ID_DESC

Order results by parent space id descending.

SubspacesOrderBy.CHILD_SPACE_ID_ASC

Order results by child space id ascending.

SubspacesOrderBy.CHILD_SPACE_ID_DESC

Order results by child space id descending.

SubspacesOrderBy.PRIMARY_KEY_ASC

Order results by primary key ascending.

SubspacesOrderBy.PRIMARY_KEY_DESC

Order results by primary key descending.

Member Of

subspaces query ● subspacesConnection query