Phil Pluckthun

Results 299 comments of Phil Pluckthun

This is most likely related to a faulty "meta introspection" I'd suspect. I think we've seen this being caught for another server implementation before. Essentially, the introspection code in `gql.tada`...

Sorry didn't get to this. The introspection result in `pg_graphql` is hard-coded: https://github.com/supabase/pg_graphql/blob/a899acda93b54e02d3138f5b388edad8b0d476a0/src/graphql.rs#L2828 This is a bug in `pg_graphql`. A quick search shows that this is the only reference of...

> That's basically a spec-compliance bug and should be reported for them. Just to clarify the above, please report this to Supabase. This is a spec-implementation bug in Supabase (and...

There's not much that can be done here technically without a huge increase in Turbo's complexity. https://github.com/0no-co/gql.tada/blob/5b5d1e49e32b0e80f6ccd21820991be8363de845/packages/cli-utils/src/commands/turbo/thread.ts#L97 This basically comes down to what I wrote in a discussion thread, but...

Oh, I misread. The outcome may still be the same though. Which version of TypeScript are you using and can you reproduce this in an isolated example? Typically, the references...

Just to clarify, where `query { empireHero: hero }`, `"empireHero"` is the alias name, not the operation name. The operation name would be `"empireHero"` for `query empireHero { ... }`....

As per [the `npm-run-script` docs](https://docs.npmjs.com/cli/v8/commands/npm-run-script), the `INIT_CWD` environment variable is also not being set.

The logic for this is in this file: https://github.com/0no-co/gql.tada/blob/5b5d1e49e32b0e80f6ccd21820991be8363de845/packages/cli-utils/src/commands/doctor/helpers/versions.ts I simply didn't get to this, and since it's still a bit of a niche feature, I didn't bother adding it....

Closing since the supabase issue is resolved upstream and there don't seem to be more updates needed here

The array there has actually been left out on purpose and that's quite an important detail. The code there needs to be executed whenever React updates (i.e. whenever the component...