OBJECT

PollVoteBreakdown

A breakdown of votes cast for/by this poll/choice/user.

link GraphQL Schema definition

1type PollVoteBreakdown {
2
3# Total number of base votes.
4base: Int!
5
6# Total number of votes due to bits contributions.
7bits: Int!
8
9# Total number of votes due to Community Points contributions.
10communityPoints: Int!
11
12# ID of vote breakdown.
13id: ID!
14
15# Total number of votes across all different vote types.
16total: Int!
17
18}