I am new to Monday.
I have a Board. I want to add an item. The GUI for the App shows three interesting things about an item
An item has a name, a week, a quantity and an order number. So I would see columns like that.
“foomanchu”, “June 27”, 3, “#327656”
So now I use GraphQL Mutation to insert a new item in the board. Thing is, I cannot wrap my head around Monday in terms of item column values. I do a GET on an existing item, and I see what I consider to be unstructured data.
Specially, for an item named “foomanchu”, these column values.
{“value”=>“"JUN 27"”, “text”=>“JUN 27”},
{“value”=>“"1"”, “text”=>“1”},
{“value”=>“"30204"”, “text”=>“30204”},
So there is no reference to week, quantity or order #. So if I want to POST a Mutation with a new item for this board, and I have the board ID and the name of the item, what are the column values I present, so that they fall into the Week, Quantity and Order Number columns all other items are created with?
It like this add new item to a board mutation expects column values but they actually come with no such description as week, quantity or order number, just a value and type “text”.
What is the secret sauce here I am missing?
TL:DR; Monday seems be totally unstructured, yet has structure. How do you insert with structure?