Skip to main content

Module v1

Module v1 

Source
Expand description

Microsoft Graph API v1.0.

rest mirrors the Graph resource tree (users.*); send is the HTTP/JSON transport every coroutine delegates to, and query turns a params struct into OData query pairs.

Modulesยง

clientclient
Std-blocking Microsoft Graph client: wraps a Read + Write stream plus the bearer credential and runs the coroutines against graph.microsoft.com. Gated behind the client feature.
field
Shared tri-state for the writable fields of Graph resources, distinguishing a field left out of a PATCH body from one explicitly cleared. See the update semantics at https://learn.microsoft.com/en-us/graph/api/contact-update.
query
Turn a Serialize struct into OData URL query pairs.
rest
Microsoft Graph REST API, mirroring the reference resource tree. The mail and contacts surfaces hang off the users resource (/me or /users/{id}): mail folders, messages, the sendMail action, contact folders and contacts.
send
HTTP/JSON transport every Microsoft Graph coroutine delegates to: builds the authorized request and parses the JSON response, or the Graph error envelope on failure.