Jesse Szwedko

Results 542 comments of Jesse Szwedko

I'm happy to open a PR if this behavior would be welcome. I think it would be nice to have `gqlgen` handle this rather than defining our own wrapper implementations...

I still think this would be nice to have in `gqlgen` but would like maintainer feedback before I open a PR. We currently have our own scalar implementations to handle...

@akashbdj Hmm, you are right, I see that those schema validation errors are passed directly back. I could see it being useful to pass those through the error presenter as...

Ouch, definitely feels like a bug. What's happening in your example is that the flags are being refedined at each level so that `c.Bool/c.GlobalBool` are going to look at the...

Far from ideal, but you can do something like: ```golang package main import ( "fmt" "os" "github.com/urfave/cli" ) var debug = false func setDebug(c *cli.Context) error { if c.IsSet("debug") {...