graphql-schema-diff
graphql-schema-diff copied to clipboard
Use with multiple Headers ?
How can it be used with multiple headers ? Like Insomnia for example:
To use multiple headers you can just use the --header
(or -H
) option multiple times, e.g.:
graphql-schema-diff https://example.com/graphql schema.graphql \
-H 'Authorization: Bearer 123' \
-H 'Content-Type: application/json' \
-H 'X-Api-Key: 123'
Thank you !