We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2699473 commit 990bb30Copy full SHA for 990bb30
README.md
@@ -42,6 +42,19 @@ const server = new GraphQLServer({
42
server.start(() => console.log('Server running on http://localhost:4000'))
43
```
44
45
+## graphql-config support
46
+
47
+OpenAPI bindings are supported in `graphql-config` using its extensions model. OpenAPI bindings can be added to the configuration like this:
48
+```yaml
49
+projects:
50
+ petstore:
51
+ schemaPath: src/generated/petstore.graphql
52
+ extensions:
53
+ openapi:
54
+ definition: petstore.json
55
+```
56
+This will enable running `graphql get-schema` to output the generated schema from the definition to the defined schemaPath.
57
58
## Static bindings
59
Static binding support coming soon.
60
0 commit comments