Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Breaking Changes for Monday API #129

Open
scottgruenewald opened this issue Feb 29, 2024 · 2 comments
Open

Breaking Changes for Monday API #129

scottgruenewald opened this issue Feb 29, 2024 · 2 comments

Comments

@scottgruenewald
Copy link

scottgruenewald commented Feb 29, 2024

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.

@scottgruenewald
Copy link
Author

I see that these updates already exist in the code, but perhaps the changes aren't released yet? Unsure...anyway closing this. Sorry!

@chiggly007
Copy link

running into the same issue, looks like the changes haven't been pushed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants