vscode-graphql
vscode-graphql copied to clipboard
Setting up Intellisense for with localSchemaFile is broken
Having issues getting VSCode extension (apollographql.vscode-apollo) to find my graphql file. Am I missing some configuration?
apollo.config.cjs file:
module.exports = {
client: {
service: {
name: "default",
localSchemaFile: './src/schema.graphql'
},
},
};
folder structure:
- src/
- schema.graphql
- apollo.config.cjs
This works:
module.exports = {
client: {
name: "default",
localSchemaFile: './src/schema.graphql'
},
};