Benjie

Results 1477 comments of Benjie

For the latter question, please see the `root` option in action configuration, you are effectively asking for root afterReset commands. This will also let you ALTER DATABASE which may address...

You should use `graphile-migrate watch --once` rather than `graphile-migrate run` for your use case.

See commit d9d33c776be0d9ac64e4266a0be987a93d6a2b29 with `UPDATE_SNAPSHOTS=1 yarn jest __tests__/queries/refs/books-related-people-plural-ref.test.graphql`

This is no longer the case; I just checked via ``` { errorTests { nested { nestedList { nested { planningError } } } } } ``` against https://github.com/graphile/crystal/blob/41a87eae4605f7ee19c3b10c21419177f10875d4/postgraphile/postgraphile/graphile.config.ts#L527-L546

@martinbonnin Feel free to smash that merge button :wink:

You can export the SDL for any GraphQL schema using introspection and buildClientSchema; there are tools that you can use to do this for you such as https://the-guild.dev/graphql/inspector/docs/commands/introspect PostGraphile also...

Glad you got it sorted! I was surprised to see that although we have this as a code block we don't actually document the option, so I'm re-opening the issue...

``` // ⚠️ THIS WILL NOT WORK WITH V5! https.createServer(options, postgraphile(preset)).listen(443); ``` This would not work because `postgraphile(preset)` doesn't return a middleware, so it can't be mounted in this way....

The only place I can find `isTrusted` in the codebase is in pgSelect; and that doesn't make sense for this. It must be something coming out of GraphiQL or another...

From a grep through node_modules it looks like it's coming from Monaco? 🤔 ``` ./node_modules/monaco-editor/esm/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js ./node_modules/monaco-editor/esm/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js ./node_modules/monaco-editor/dev/vs/editor/editor.main.js ./grafast/ruru/static/vendors-node_modules_monaco-graphql_esm_monaco-editor_js.js ```