Benjie
Benjie
No need to order results if there’s no pagination, so just send them as they come from the DB.
Should release query after transaction commits/rolls back? https://github.com/graphile/graphile-engine/blob/9dca5c8631e6c336b59c499d901c774d41825c60/packages/graphile-build-pg/src/pgPrepareAndRun.js#L49
@singingwolfboy has prepared a draft: https://gist.github.com/singingwolfboy/a7144db4e24b5d31ba81f28b878a4b51 Would be great to integrate this with VSCode. Relates to the smart tags plugin's JSON format: https://github.com/graphile/graphile-engine/blob/52b9fa0afe31cb1f258c2b5db37866ecfba44dbc/packages/graphile-utils/src/makePgSmartTagsPlugin.ts#L155-L199 Used by PostGraphile in `postgraphile.tags.json5`: https://github.com/graphile/postgraphile/pull/1177
Instead of `select ..., (select json_build_object(...) from relation where ...) alias from source` do `select ..., (json_build_object(...)) alias from source left join relation on (...)`
When you run `graphile-migrate --help` there's no hint that `watch --once` exists, and the description for `watch` doesn't seem like what you need. Suggestions: - [ ] Update the `watch`...
### Summary When pg-minify fails, Graphile Migrate outputs pg-minify's error, but doesn't relate it to the file that actually caused the problem. This is particularly problematic if you have a...
I've filed a request with pngjs-image to upgrade the pngjs version: https://github.com/yahoo/pngjs-image/issues/16 Currently this prevents installing `blink-diff` with Facebook's `yarn` package manager which enforces the `engine` clause in `package.json` I...
The terms "persisted queries" and "stored operations" are typically used interchangably. The traditional name is "persisted queries", but the term "stored operations" acknowledges that this approach can be used with...
[Server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events) are a perfect mechanism for informing a GraphQL client that the schema has been updated. They don't require the complexity of websockets, and they are uni-directional. I'm proposing...
@rivantsov Pointed out in #978 that there's some ambiguity around when the `schema` keyword can be omitted from the SDL. Upon careful reading I've noticed that there is additional ambiguity...