This commit changes the default location for the GraphQL schema from `classpath:schema.graphqls` to `classpath:/graphql/schema.graphqls`. We're also adding `.graphqlconfig` files that are leveraged by a GraphQL JS plugin in IntelliJ IDEA. Closes gh-44
15 lines
345 B
Plaintext
15 lines
345 B
Plaintext
{
|
|
"name": "Spring MVC GraphQL Sample Schema",
|
|
"schemaPath": "src/main/resources/graphql/schema.graphqls",
|
|
"extensions": {
|
|
"endpoints": {
|
|
"Local GraphQL Endpoint": {
|
|
"url": "http://localhost:8080/graphql",
|
|
"headers": {
|
|
"user-agent": "JS GraphQL"
|
|
},
|
|
"introspect": false
|
|
}
|
|
}
|
|
}
|
|
} |