Skip to main content

GlobalScoresOrderBy

Methods to use when ordering GlobalScore.

enum GlobalScoresOrderBy {
NATURAL
ENTITY_ID_ASC
ENTITY_ID_DESC
SCORE_ASC
SCORE_DESC
UPDATED_AT_ASC
UPDATED_AT_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
}

Values

GlobalScoresOrderBy.NATURAL

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

GlobalScoresOrderBy.ENTITY_ID_ASC

Order results by entity id ascending.

GlobalScoresOrderBy.ENTITY_ID_DESC

Order results by entity id descending.

GlobalScoresOrderBy.SCORE_ASC

Order results by score ascending.

GlobalScoresOrderBy.SCORE_DESC

Order results by score descending.

GlobalScoresOrderBy.UPDATED_AT_ASC

Order results by updated at ascending.

GlobalScoresOrderBy.UPDATED_AT_DESC

Order results by updated at descending.

GlobalScoresOrderBy.PRIMARY_KEY_ASC

Order results by primary key ascending.

GlobalScoresOrderBy.PRIMARY_KEY_DESC

Order results by primary key descending.

Member Of

globalScores query ● globalScoresConnection query