You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our development and testing environments, we use self-signed HTTPS certificated, but get-graphql-schema enforces SSL certificate validation.
My current workaround is to point to HTTP endpoint, but that's only possible for my development environment.
The text was updated successfully, but these errors were encountered:
Ran into this as well. The cert check is done inside node fetch, but i was able to disable the check by setting env NODE_TLS_REJECT_UNAUTHORIZED=0 get-graphql-schema. Should be cautious about using this, because it disables tls cert validation for any fetch request.
In our development and testing environments, we use self-signed HTTPS certificated, but get-graphql-schema enforces SSL certificate validation.
My current workaround is to point to HTTP endpoint, but that's only possible for my development environment.
The text was updated successfully, but these errors were encountered: