ENUM

PollVoterConnectionSort

Possible sort orders for lists of voters.

link GraphQL Schema definition

1enum PollVoterConnectionSort {
2
3# Sort the voters by # of votes.
4VOTES
5
6# Sort the voters by time of creation.
7CREATED_DATE
8
9# Sort the voters by amount of Bits on vote.
10BITS
11
12# Sort the voters by amount of channel points.
13CHANNEL_POINTS
14}