Hi,
I’m trying to create new items, providing column values. Everything it’s fine, except with link (url) columns. Can anybody tell me how to add a link field?
I know that a link field has 2 subfields (“web address” and “text to display”), so I suppose that I have to provide an object with both values, but I cannot find any example in the documentation.
What should be the proper way to add the link field:
mutation {
create_item (board_id:111111, item_name:“test3”, column_values: “{"link": "www.test.com"}”
) {
id
}
}