We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could you provide a way to export the queries in typescript files ? Like =>
import gql from 'graphql-tag'; export const ADD_TASK = gql` mutation createTask($description: String!, $title: String!, $status: TaskStatus){ createTask(description: $description, title: $title, status: $status){ id title description version status } } `;
The text was updated successfully, but these errors were encountered:
If you have access to a schema you can generate types from it using https://graphql-code-generator.com/. Is this what you need?
Sorry, something went wrong.
No branches or pull requests
Could you provide a way to export the queries in typescript files ?
Like =>
The text was updated successfully, but these errors were encountered: