Hi All,
Have a two part question here.
1st part:
I’m looking at the Postman request examples provided by Monday.
Specifically for the latest API version
I see POST requests that will change values for items.
I am wondering if there is a GraphQL query that will automatically update all items in any given board. Either a delta update or a full replace (even if some items weren’t updated).
e.g.
Sample board:
client | hours | manager | status |
---|---|---|---|
Client A | 10 | john | online |
Client B | 4 | sarah | offline |
let’s say that I want to change the managers, hours, etc… so it’s now
client | hours | manager | status |
---|---|---|---|
Client A | 222 | ken | online |
Client B | 11 | wendy | online |
Is there a GraphQL query that will update all items for the board? Ideally I don’t have to specify which columns to update as well.
2nd part is what’s the best method to push updates to a Monday board from another system/platform?
e.g. using a webhook to push a CURL request?
e.g. using Google Sheets and an integration (e.g. Zapier, Integromat, etc…)
Thanks,
Chris