query_entities
Query Synapse entities like datasets, projects, and files using filters such as entity type, name, parent ID, or annotations to locate specific data resources programmatically.
Instructions
Query entities based on various criteria.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
annotations | No | ||
entity_type | No | ||
name | No | ||
parent_id | No |
Input Schema (JSON Schema)
{
"properties": {
"annotations": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Annotations"
},
"entity_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Entity Type"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"parent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
}
},
"type": "object"
}