-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add headers to graphiQL UI #37
Conversation
internal/config/config.go
Outdated
@@ -14,7 +14,7 @@ type Config struct { | |||
type HandlerConfig struct { | |||
Pretty bool `envconfig:"default=true,optional"` | |||
Playground bool `envconfig:"default=true,optional"` | |||
GraphiQL bool `envconfig:"default=true,optional"` | |||
GraphiQL bool `envconfig:"GRAPHI_QL,default=true,optional"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this necessary? That should be the default behavior
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean set it to false by default? I can do that way as well.
I just wanted to set new graphiql UI as a default one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no i mean
GraphiQL bool `envconfig:"default=true,optional"`
should be sufficient
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed.
GraqhiQL is going to replace graqphl-playground. See graphql/graphql-playground#1366 (comment) (This comment is referrenced as future of graphql/graphql-playground repository in the root README)
But we have one more dependency point - github.com/graphql-go/handler that uses old version of GraqhiQL.
I created a PR graphql-go/handler#93 to propose newer version, and I am using
go mod replace
to that fork as a solution for us to fix autocomplete overlay issue.