feat: add batch read operation for meetings#4
Merged
franccesco merged 4 commits intomainfrom Jul 26, 2025
Merged
Conversation
Add get_many() method to MeetingOperations to support batch retrieval of multiple meetings by ID. This method processes each meeting ID sequentially and returns a BulkCreateResult with successful retrievals and any failures. The implementation reuses the existing details() method for each meeting to ensure consistency and include all meeting data (attendees, issues, todos, metrics).
Add test coverage for the new get_many() method including: - All successful retrievals - Partial failures with missing meetings - Empty list handling - Network error resilience - Duplicate ID handling Tests ensure the method correctly processes each meeting independently and properly captures both successes and failures.
- Update README with batch read example in Meetings section - Add get_many() to API documentation with sync/async examples - Expand bulk operations guide to cover batch reading operations - Include practical use cases and error handling examples The documentation shows how to retrieve multiple meetings efficiently and handle partial failures gracefully.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
get_many()method to MeetingOperations for batch retrieval of multiple meetingsKey Changes
client.meeting.get_many([id1, id2, id3])for batch reading meetingsTest Plan
🤖 Generated with Claude Code