OBJECT

PollVoterConnectionEdge

A page entry, that contains the PollVoter item and a cursor to return from the query to allow pagination.

link GraphQL Schema definition

1type PollVoterConnectionEdge {
2
3# Cursor used for next query.
4cursor: Cursor!
5
6# The underlying poll voter.
7node: PollVoter!
8
9}