getChildren
Retrieve all child objects of a parent in 3D creative software using a parent object ID. Optionally filter by object types or include all descendants recursively.
Instructions
Get all children of an object
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Parent object identifier | |
recursive | No | Whether to include all descendants | |
typeFilter | No | Filter by object types |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Parent object identifier",
"type": "string"
},
"recursive": {
"default": false,
"description": "Whether to include all descendants",
"type": "boolean"
},
"typeFilter": {
"description": "Filter by object types",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id"
],
"type": "object"
}