postgraphile-plugin-nested-mutations
postgraphile-plugin-nested-mutations copied to clipboard
Nested mutations for Postgraphile
@mlipscombe tell me what you think about it. I will provide the tests ASAP. I'm pretty sure there is a nicer way than `includes('updateBy')` to detect an updater field in...
This plugin uses * to return all columns on selected/inserted/updated rows. When executed by an unprivileged user who only has permission to certain columns, this of course causes the request...
Hello, I have a question about a case where a table has a `parent_id` like this: ``` CREATE TABLE item ( uuid uuid PRIMARY KEY DEFAULT uuid_generate_v4 (), parent_uuid uuid...
Hello everyone, this issue is more of a call for help. I am trying to use this core plugin https://www.graphile.org/postgraphile/make-wrap-resolvers-plugin/ in conjunction with postgraphile nested mutations. ```js // Example: log...
When I added a virtual constraint to a field on a complex type using tags I started to get an error on this line.
The delete mutations aren't available in the Update patch relation, even though there is a top-level delete mutation available for the relation. Available nested mutations: ```graphql connectByCurrencyIdAndCountryId: [CurrencyCountryCurrencyCountryPkeyConnect!] connectByNodeId: [CurrencyCountryNodeIdConnect!]...
Hello, I have a problem with a nested mutation but I'm not sure if I'm missing something or if it can't work, this is the schema I have: ``` CREATE...
When I run this mutation, the entity is updated correctly. `PropertyId` on the `QuoteDay` entity is set to the specified value. ```graphql updateQuoteDay( input: { patch: { propertyToPropertyId: { connectById:...
I found an issue while performing delete mutations from multiple primary keys : ```gql deleteByCarIdAndBrandId: [ { carId: 514, brandId: 43 } ] ``` Pg compiler outputs an error :...
when this plugin is enabled, a column that otherwise is omitted from the generated api is still present ## to reproduce ``` create table articles ( id int generated by...