ProposalTallyQueuesOrderBy
Methods to use when ordering ProposalTallyQueue.
enum ProposalTallyQueuesOrderBy {
NATURAL
PROPOSAL_ID_ASC
PROPOSAL_ID_DESC
QUEUED_AT_ASC
QUEUED_AT_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
}
Values
ProposalTallyQueuesOrderBy.NATURAL
No explicit ordering; results return in the database's natural order. Avoid for paginated queries — use a deterministic order instead.
ProposalTallyQueuesOrderBy.PROPOSAL_ID_ASC
Order results by proposal id ascending.
ProposalTallyQueuesOrderBy.PROPOSAL_ID_DESC
Order results by proposal id descending.
ProposalTallyQueuesOrderBy.QUEUED_AT_ASC
Order results by queued at ascending.
ProposalTallyQueuesOrderBy.QUEUED_AT_DESC
Order results by queued at descending.
ProposalTallyQueuesOrderBy.PRIMARY_KEY_ASC
Order results by primary key ascending.
ProposalTallyQueuesOrderBy.PRIMARY_KEY_DESC
Order results by primary key descending.
Member Of
proposalTallyQueues query ● proposalTallyQueuesConnection query