// ... code | |
export const POLL_CREATED = gql` | |
subscription PollCreated { | |
pollCreated { | |
id | |
title | |
description | |
options { | |
id | |
name | |
votes | |
} | |
} | |
} | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment