Guus
10/24/2018, 8:50 PMhuv1k
10/24/2018, 8:53 PMGuus
10/24/2018, 8:55 PMhuv1k
10/24/2018, 8:56 PMhuv1k
10/24/2018, 8:59 PMhuv1k
10/24/2018, 9:00 PM**/*.ts
with your *.ts
filesGuus
10/24/2018, 9:15 PMschema/schema.graphql
- Added a .graphqlconfig.yml
file with the following contents:
projects:
app:
schemaPath: schema/schema.graphql
includes: ["schema/*.graphql"]
extensions:
endpoints:
default: <http://localhost:4000>
- Installed the vscode plugin
- Reloaded vscode
- Created a .ts file where I started testing:
import { gql } from 'graphql'
const QUERY = gql...
- I would expect the autocompletion to happen when I start writing a query within the gql`` tag, but it doesn't.
Any idea what I'm missing here?JP
10/25/2018, 12:03 AMnilan
10/25/2018, 8:17 AM