Skip to content

Breaking Changes for Monday API #129

@scottgruenewald

Description

@scottgruenewald

Hi - I received an error while trying to retrieve data from one of our Monday boards using fetch_items_by_board_id. The error was caused by the breaking changes announced here: https://developer.monday.com/api-reference/docs/migrating-to-v-2023-10

I checked the source code in query_joins.py and updated the query I needed under get_board_items_query to this:

query
    {
        boards(ids: %s) {
            name
            items_page (%s) {
                cursor
                items {
                    id
                    name
                    column_values {
                        column {
                            id
                            title
                        }
                        id
                        type
                        value
                    }
                }
            }
        }
    }

That solved my issue. Would be nice to get a new release to account for the changes. Happy to help, just haven't really contributed to another package before.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions