graphile-engine
graphile-engine copied to clipboard
Monorepo home of graphile-build, graphile-build-pg, graphile-utils, postgraphile-core and graphql-parse-resolve-info. Build a high-performance easily-extensible GraphQL schema by combining plugins!
No need to order results if there’s no pagination, so just send them as they come from the DB.
In some cases it may be useful to have an option to append another query to automatically generated one. For example when I want to set `update_at` on update mutation....
This would be useful for cleaning up your schema. I think an omit for queries by unique indexes (that are generated in addition to byId) is also not available. ---...
From Discord: > @benjie: `@omit read` was never fully implemented, which is why it requires you omit everything right now. > @ab-pm: so what is missing then? > @benjie: The...
If you're writing a query that is paging through data and has a calculated column nested in the result that comes back, the query that postgraphile is sending to the...
Should release query after transaction commits/rolls back? https://github.com/graphile/graphile-engine/blob/9dca5c8631e6c336b59c499d901c774d41825c60/packages/graphile-build-pg/src/pgPrepareAndRun.js#L49
The 3 main multitenancy options for postgres are: - Tenants have their own DB - Tenants are in same DB, share tables, separation provided by RLS - Tenants are in...
Integrating [the plugin](https://gist.github.com/ab-pm/0f0b021db2c541008875b581f91404ee) I had posted on Discord into core. Basic tests (creates the fields it should, queries work as expected, can be omitted using new `@omit single` #460) included...
This error: ``` ((DEV)) @my-ns/server: A serious error occurred when building the initial schema (attempt 9). We'll try again in 8100ms. Error details: ((DEV)) @my-ns/server: Error: Could not find type...
I'm submitting a ... @benjie * [x] bug report PostGraphile version: `4.5.5` Steps to reproduce: I'm trying to use the programmatic usage of this tool, in order to integrate it...