query_elements
Retrieve specific elements from Excalidraw diagrams using customizable filters, enabling targeted diagram analysis and manipulation via structured API queries.
Instructions
Query Excalidraw elements with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | ||
type | No |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"additionalProperties": true,
"type": "object"
},
"type": {
"enum": [
"rectangle",
"ellipse",
"diamond",
"arrow",
"text",
"label",
"freedraw",
"line",
"arrowLabel"
],
"type": "string"
}
},
"type": "object"
}