Skip to content

Instantly share code, notes, and snippets.

@chris001177
Created June 25, 2019 10:10
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 chris001177/79f297a9446ac41a9efbe9289c482234 to your computer and use it in GitHub Desktop.
Save chris001177/79f297a9446ac41a9efbe9289c482234 to your computer and use it in GitHub Desktop.
import React from 'react';
import gql from 'graphql-tag';
import { Query } from 'urql';
const getTodos = gql`
query GetTodos($limit: Int!) {
todos(limit: $limit) {
id
text
isDone
}
}
`;
<Query query={getTodos} variables={{ limit }} />;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment