Open shahidhk opened 6 years ago
Right now query in the nodejs api is just a string. we should support gql-parsed strings too, so that if they are exported elsewhere, it can be used directly.
query
import gql from 'graphql-tag'; export const GRAPHQL_QUERY=gql` query { something { anotherthing } } `;
Hi, @shahidhk, can you help me on this by clearly explaining the issue
Hi, @shahidhk I would like to work on this issue. If you guide me on that all changes do I need to make and in which file?
Right now
query
in the nodejs api is just a string. we should support gql-parsed strings too, so that if they are exported elsewhere, it can be used directly.