| 12345678910111213141516171819202122 |
- {
- "README_schema" : "Specifies how to load the GraphQL schema that completion, error highlighting, and documentation is based on in the IDE",
- "schema": {
- "README_file" : "Remove 'file' to use request url below. A relative or absolute path to the JSON from a schema introspection query, e.g. '{ data: ... }' or a .graphql/.graphqls file describing the schema using GraphQL Schema Language. Changes to the file are watched.",
- "file": "./schema.json"
- },
- "README_endpoints": "A list of GraphQL endpoints that can be queried from '.graphql' files in the IDE",
- "endpoints" : [
- {
- "name": "Vendure Dev",
- "url": "http://localhost:3000/api",
- "options" : {
- "headers": {
- "user-agent" : "JS GraphQL"
- }
- }
- }
- ]
- }
|