Hello Community,
I’m new to both GraphQL as well as the Monday.com API suite, so looking to get some understanding with respect to pulling all columns. For additional context I am querying with Python and the requests library, I am also passing headers for the API-Version of 2023-10.
For Columns my query is:
columns_query = ‘’‘{
boards (ids: #######) {
columns{
id
title
type
}
}
}’‘’
To which only 5 (seemingly random) columns are being returned, but the board that I am querying has 13; is there pagination with respect to pulling columns? or is my query incorrect?