hasura / ra-data-hasura

react-admin data provider for Hasura GraphQL Engine
MIT License
336 stars 70 forks source link

UPDATE MANY #152

Open mercurio-developing opened 1 year ago

mercurio-developing commented 1 year ago

Hi guys I wonder if somebody can answer if this package its supporting UPDATE MANY? As far I can see its UPDATE MANY ids with the same data in the source code. Its avail to handle hasura 2.10 update many?

mutation update_many_articles { update_article_many ( updates: [ { where: {rating: {_lte: 1}}, _set: {is_published: false} }, { where: {rating: {_gte: 4}}, _set: {is_published: true} } ] ) { affected_rows } }