.graphqlrc.json 376 B

12345678910111213141516
  1. {
  2. "name": "Zammad GraphQL Schema",
  3. "schemaPath": "schema.graphql",
  4. "documents": ["./app/frontend/**/fragments/*.graphql"],
  5. "extensions": {
  6. "endpoints": {
  7. "Default GraphQL Endpoint": {
  8. "url": "http://localhost:3000/graphql",
  9. "headers": {
  10. "SkipAuthenticityTokenCheck": "true"
  11. },
  12. "introspect": true
  13. }
  14. }
  15. }
  16. }