An R6 class that extends api_resource to provide specialized methods for the Microsoft Graph API. This class adds convenience methods for common Graph operations.
azr::api_resource -> api_graph_resource
Inherited methods
me()Fetch the current user's profile
api_graph_resource$me(select = NULL)selectA character vector of properties to select (e.g., c("displayName", "mail")). If NULL, all properties are returned.
The response from the /me endpoint
clone()The objects of this class are cloneable with this method.
api_graph_resource$clone(deep = FALSE)deepWhether to make a deep clone.