Greatings developers,
I’ve found from the documentation that I can create a new board using graphql using the following mutation:
mutation {
create_board (board_name: “my board”, board_kind: public) {
id
}
}
I have a requirement to create project board in Monday.com enterprise edition using graphql, but I cannot find any example. Has anyone succeeded with this? What mutation syntax can I use?