Hey,
im trying to create a query where i can get the item coulms_values.
i have the item id and board it, and i would like to get the columnes value. and if one of the cell are linked to other board , i would like to get the item id in the other board is it possible?
i think it called : linkedPulseId?
query = f"""
query {{
items (ids:[{item_id}]) {{
id
name
column_values {{
text
id
value
type
}}
}}
}}
i tired this, but its only giving me the value , and i dont see the linked cell name and item id.
i used to use but its not working any more.
query = f"""
query {{
boards(ids: [{board_id}]) {{
items(ids: [{item_id}]) {{
id
name
column_values {{
title
text
}}
}}
}}
}}
"""