You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
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 } }
The text was updated successfully, but these errors were encountered: