Use case: I am interested in tracking changes to a user's messages and events.
Using delta query (https://developer.microsoft.com/en-us/graph/docs/concepts/delta_query_overview) I can achieve this, but I need to send two requests against the Graph: one for messages, one for events.
Batching (https://developer.microsoft.com/en-us/graph/docs/concepts/json_batching, currently preview) allows me to send multiple requests at once, and neither the known issues (https://developer.microsoft.com/en-us/graph/docs/concepts/known_issues#json-batching) nor the OData spec indicate that batch-sending deltaLinks would be disallowed.
Is this a supported scenario or am I trying to mis-use either Batch or Delta Query?