FindLabels
Filter and search record labels in RushDB using conditions, sorting, and pagination to find specific label data based on activity flags and counts.
Instructions
Find / filter record labels (supports where, limit, skip, orderBy). Superset of GetLabels.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of labels to return | |
| orderBy | No | Sorting configuration: key = field, value = asc|desc | |
| skip | No | Number of labels to skip | |
| where | No | Filter conditions for labels (e.g., by activity flags, counts) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of labels to return",
"type": "number"
},
"orderBy": {
"additionalProperties": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"description": "Sorting configuration: key = field, value = asc|desc",
"type": "object"
},
"skip": {
"description": "Number of labels to skip",
"type": "number"
},
"where": {
"description": "Filter conditions for labels (e.g., by activity flags, counts)",
"type": "object"
}
},
"required": [],
"type": "object"
}