Skip to content

Commit 0f6a0c8

Browse files
committed
build: add GraphQL autocompletion and validation
1 parent 144c038 commit 0f6a0c8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

apollo.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// For autocompletion in .graphql files in VS Code.
2+
module.exports = {
3+
client: {
4+
service: {
5+
name: 'sourcegraph',
6+
url: 'https://sourcegraph.com/.api/graphql',
7+
},
8+
includes: ['./PSSourcegraph/queries/**/*.graphql'],
9+
},
10+
}

0 commit comments

Comments
 (0)