get-entity-relationships
Retrieve one-to-many and many-to-many relationships for a PowerPlatform entity by specifying its logical name. Facilitates entity exploration and metadata access.
Instructions
Get relationships (one-to-many and many-to-many) for a PowerPlatform entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityName | Yes | The logical name of the entity |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entityName": {
"description": "The logical name of the entity",
"type": "string"
}
},
"required": [
"entityName"
],
"type": "object"
}