Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. type Mutation {
  2. createPoll(poll: CreatePollInput): Poll
  3. }
  4.  
  5. input CreatePollInput {
  6. title: String!
  7. description: String!
  8. options: [CreateOptionInput]
  9. }
  10.  
  11. input CreateOptionInput {
  12. name: String
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement