Tim

Results 8 comments of Tim

The current state on iOS: #378 restores all functionality that libbacktrace had, but it doesn't show line-numbers or source files. I don't know if that's expected or not? But I...

Same here. It would make it much easier to run CI jobs in isolation. Each job would mount a different directory from EFS.

For what it's worth, upgrading to v0.20.0 fixed it for us! So big thank you to whoever fixed this! 🎉

Oh that's really neat! I didn't even realize you could turn it into a (kind of misbehaving) future. I can probably turn this into a PR if you want! 3...

Would it be possible to add this to the docs about `try_catch`? Took me a while to debug this. 😅 Indeed, the problem is trivially solved by adding `setTimeout(() =>...

Ah, interesting! Does this also imply that scalar literals aren't checked for undefined variables? For example, would the following be valid (depending on the schema)? ```graphql query Example { hello(custom:...

Got it, thanks! And also, are the variables already parsed before they are passed into the `variables` argument of `parseLiteral`? Specifically, this line suggests that the variables are already parsed...

Hm, surprisingly, it looks like the graphql-js implementation calls `parseLiteral` twice in this example (assuming `{ foo: "example" }` are passed as variables). 1. `Bar.parseLiteral` is called without `variables` (which...