While exploring the GraphQL API, I have encountered a problem in making a group in a specific board:
The board query returns the board_id as an ID! , while the create_group expects the board_id as an Int! .
When I try to send my board_id as an Int! , I get a message that my library cannot coerce the number to an Int! .
When I try to send my board_id as an ID!, I get a type mismatch message between my variable (ID!) and the board_id argument (Int!).
How do I create a group in a specific board via the GraphQL API ?