monday.com connector: Support board-level updates in Updates stream #71014
rajathsinhaa
started this conversation in
Connector Ideas and Features
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
The monday.com connector currently extracts item-level updates only from the
updatesstream. Board-level updates (updates posted directly on boards, not tied to specific items) are not retrieved, even though monday.com’s API supports them via a nested GraphQL query.This limitation prevents users from capturing a complete history of activity and discussions at the board level.
Observations
❌ Data Absence
Board-level updates are not replicated to the destination. Only item-level updates appear in the
updatesstream.✅ Schema Visibility
The
boardsstream is available but only contains board metadata (name, owner, settings). It does not include updates.🔍 API Capability
monday.com’s API supports board-level updates via a nested GraphQL query:
However, the connector currently uses the root
updatesquery, which returns item-level updates only.Relevant Information
monday.com API documentation confirms support for board-level updates:
👉 https://developer.monday.com/api-reference/reference/updates
Proposed Actions
Enhance Connector: Extend the monday.com connector to fetch board-level updates using the
boards { updates { ... } }GraphQL query.Stream Design: Either:
updatesstream, orboard_updates) for clarity.Pagination & Rate Limits: Ensure the implementation handles pagination and monday.com API rate limits appropriately.
Example Fields to Extract
Dimensions
Fields
Impact
Adding board-level updates support will:
Additional Information
Customer expected board-level updates to be present in the destination because:
boardsstream is enabledCurrent behavior is working as implemented, but missing functionality leads to incomplete data ingestion.
Impacted Customers
Beta Was this translation helpful? Give feedback.
All reactions