Hello,
I am trying to use the new items_page_by_column_values, but keep getting the error “Field ‘items_page_by_column_values’ doesn’t exist on type ‘Query’”
Here is the code used to make the request in Python:
apiKey = os.environy'MONDAY_TOKEN']
apiUrl = "https://api.monday.com/v2"
headers = {"Authorization" : apiKey}
query1 = '{items_page_by_column_values (board_id: 123123123, columns: 1 {column_id: "name" }]) { items }}'
data1={'query' : query1}
r1 = requests.post(url=apiUrl, json=data1, headers=headers) # make request
print(r1.json())
Im assuming maybe Im using incorrect API version? Im really not sure. Any help would be appreciated.
Thank you