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ยง
- client
client - Std-blocking Microsoft Graph client: wraps a
Read + Writestream plus the bearer credential and runs the coroutines againstgraph.microsoft.com. Gated behind theclientfeature. - 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
Serializestruct into OData URL query pairs. - rest
- Microsoft Graph REST API, mirroring the reference resource tree. The
mail and contacts surfaces hang off the
usersresource (/meor/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.