We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85d4ce9 commit c426aa3Copy full SHA for c426aa3
1 file changed
.github/workflows/graphql-schema-check.yml
@@ -35,11 +35,15 @@ jobs:
35
run: |
36
graphql-inspector introspect http://localhost:4000/graphql > base-schema.graphql
37
38
+ - name: generate new schema
39
+ run: |
40
+ graphql-inspector introspect http://localhost:4001/graphql > new-schema.graphql
41
+
42
# This doesn't work see https://github.com/graphql-hive/graphql-inspector/issues/2876
43
- uses: graphql-hive/graphql-inspector@master
44
with:
45
schema: base-schema.graphql
- endpoint: 'http://localhost:4001/graphql'
46
+ endpoint: new-schema.graphql
47
48
49
- name: manual graphql schema check
0 commit comments