Inspect a Graph resource shape
graph_schemaDiscover available properties and JSON types for any Microsoft Graph path by fetching a sample item, so you can build precise $select and $filter parameters.
Instructions
Fetches one item from a Graph path ($top=1) and reports the property names it carries with their JSON types, plus the @odata.context that names the resource type. Use it before graph_request to learn what $select and $filter can reference. It reports the shape of one real item, so properties that happen to be null on that item are absent from the list, and an empty collection yields no properties at all. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| version | No | Graph endpoint to probe. Defaults to the server default (v1.0). | |
| entityPath | Yes | Graph-relative path to a collection or a single entity, e.g. "/me/messages", "/me/drive/root/children" or "/me". Must begin with "/". |