You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to get an item by its name, and I am following along what it says to do in the documentation
column_id = 'test_column'
column_value = board.get_column_value(column_id)
column_value.text = 'Search Text'
items = board.get_items_by_column_values(column_value, 'id', 'name')
items
[{'id': '1234567', 'name': 'New Item'}]
The board.get_column_value function does not work and I get the following error: AttributeError: module 'moncli.column_value' has no attribute 'NameValue'.
Any guidance on how to fix this and get an item by its name would be appreciated. Thank you!
The text was updated successfully, but these errors were encountered:
I am trying to get an item by its name, and I am following along what it says to do in the documentation
column_id = 'test_column'
column_value = board.get_column_value(column_id)
column_value.text = 'Search Text'
items = board.get_items_by_column_values(column_value, 'id', 'name')
items
[{'id': '1234567', 'name': 'New Item'}]
The board.get_column_value function does not work and I get the following error: AttributeError: module 'moncli.column_value' has no attribute 'NameValue'.
Any guidance on how to fix this and get an item by its name would be appreciated. Thank you!
The text was updated successfully, but these errors were encountered: