add current schema and graphql config to ease development with https://blog.jetbrains.com/webstorm/2019/04/featured-plugin-js-graphql/

This commit is contained in:
Michael Schramm 2020-06-03 12:07:30 +02:00
parent 97794bcbf9
commit b125a0059b
3 changed files with 15 additions and 4 deletions

15
.graphqlconfig Normal file
View File

@ -0,0 +1,15 @@
{
"name": "OhMyForm API GraphQL Schema",
"schemaPath": "./schema.graphql",
"extensions": {
"endpoints": {
"OhMyForm API GraphQL Endpoint1": {
"url": "http://localhost:4100/graphql",
"headers": {
"user-agent": "JS GraphQL"
},
"introspect": true
}
}
}
}

View File

@ -1,4 +0,0 @@
{
"name": "OhMyForm API GraphQL Schema",
"schemaPath": "./schema.graphql"
}