OBJECT

CreatePollPayload

Outputs from the create poll mutation.

link GraphQL Schema definition

1type CreatePollPayload {
2
3# If present, there was an error with the request.
4error: CreatePollError
5
6# The created poll.
7poll: Poll
8
9}