OBJECT

AdPollVote

A vote an ad poll and associated information.

link GraphQL Schema definition

1type AdPollVote {
2
3# Id of the choice that was voted for.
4choiceID: ID!
5
6# id of the vote in the poll.
7id: ID!
8
9# Id of the poll this voter voted in.
10pollID: ID!
11
12# Id of the voter in the poll.
13userID: ID!
14
15}