I’m going nuts and it doesn’t seem like I am the only one here having issues figuring out why I can’t create items with multiple items and how to format the mutation.
I was able to get this to work for 2 items through a ton of attempts but have no idea why
mutation {create_item (board_id:3639551233, item_name:“test02”,
column_values: “{\\“date\\”: \\“2019-02-06\\”,\\“long_text\\”: \\“Hello world this is a really long note\\”}”
){id}}
I have no idea why this doesn’t work if the above code works:
mutation {create_item (board_id:3639551233, item_name:“test666”,
column_values: “{\\“date\\”: \\“2019-02-06\\”,\\“long_text\\”: \\“Hello world this is a really long note\\”,\\“text4\\” :\\“Saint Nick\\”}”
){id}}
I would really appreciate help understanding this. Also is subitem and columns the same format? if not can I see example of this as well?
Thank you.