Skip to content

Instantly share code, notes, and snippets.

@helloncanella
Created October 15, 2019 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save helloncanella/9bd8184255f060d431b96e0a68679406 to your computer and use it in GitHub Desktop.
Save helloncanella/9bd8184255f060d431b96e0a68679406 to your computer and use it in GitHub Desktop.
function useCount({ label }) {
const COUNT = gql`
query Count($label: ID) {
count(label: $label) @client
}
`
const [count, setCount] = useAppState({
query: COUNT,
variables: { label }
})
return { count, setCount }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment