Skip to content

Instantly share code, notes, and snippets.

@Cerberus
Created September 24, 2017 18:12
Show Gist options
  • Save Cerberus/320f6eb4152bef6badb85f055a93bec1 to your computer and use it in GitHub Desktop.
Save Cerberus/320f6eb4152bef6badb85f055a93bec1 to your computer and use it in GitHub Desktop.
hasSubscriptionOperation function
const hasSubscriptionOperation = ({ query: { definitions } }) =>
definitions.some(
({ kind, operation }) =>
kind === 'OperationDefinition' && operation === 'subscription',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment