FindUniqRecord
Locate a specific database record using search criteria and label filters to retrieve unique data entries from your graph database.
Instructions
Find a unique record that matches the given search criteria
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | No | Filter by record labels | |
| where | No | Search conditions for finding the unique record |
Input Schema (JSON Schema)
{
"properties": {
"labels": {
"description": "Filter by record labels",
"items": {
"type": "string"
},
"type": "array"
},
"where": {
"description": "Search conditions for finding the unique record",
"type": "object"
}
},
"required": [],
"type": "object"
}