Fix Graph delta query: exclude unsupported @removed field #287

Closed
opened 2026-04-05 16:17:16 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @tilwegener on 8/17/2025

Fix Graph delta query: exclude unsupported @removed field

Summary

This pull request resolves #44 by adjusting the Microsoft Graph delta query to remove the unsupported @removed field. The query now selects only id and conversationId, while removed messages are still correctly skipped during iteration.

Changes

  • Removed @removed field from the delta query (unsupported by Graph)
  • Limited selection to id and conversationId
  • Kept logic for skipping removed messages during iteration

Benefits

  • Prevents runtime errors due to unsupported field
  • Keeps implementation aligned with Graph API best practices
*Originally created by @tilwegener on 8/17/2025* # Fix Graph delta query: exclude unsupported @removed field ## Summary This pull request resolves #44 by adjusting the Microsoft Graph delta query to remove the unsupported `@removed` field. The query now selects only `id` and `conversationId`, while removed messages are still correctly skipped during iteration. ## Changes - Removed `@removed` field from the delta query (unsupported by Graph) - Limited selection to `id` and `conversationId` - Kept logic for skipping removed messages during iteration ## Benefits - Prevents runtime errors due to unsupported field - Keeps implementation aligned with Graph API best practices
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/OpenArchiver#287