add .graphqlconfig, add remote-schema.graphql to .gitignore

This commit is contained in:
Dawid Wysokiński 2021-03-21 08:37:17 +01:00
parent cb5ca20799
commit 4543e6a237
2 changed files with 18 additions and 1 deletions

4
.gitignore vendored
View File

@ -22,4 +22,6 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea
.idea
remote-schema.graphql

15
.graphqlconfig Normal file
View File

@ -0,0 +1,15 @@
{
"name": "TWHelp",
"schemaPath": "remote-schema.graphql",
"extensions": {
"endpoints": {
"Default GraphQL Endpoint": {
"url": "https://api.tribalwarshelp.com/graphql",
"headers": {
"user-agent": "IDE"
},
"introspect": true
}
}
}
}