meta_search / meta_search_paginated.
Privacy notice
Metadata fields
Each chunk has five indexed scalar tags and one multi-value field:| Field | Type | Recommended use |
|---|---|---|
tag1 | String | High-cardinality identifier (e.g. user_id, org_id) |
tag2 | String | Collection / project / knowledge base |
tag3 | Zero-padded number string | Numeric ranges (e.g. score, price, count) |
tag4 | ISO 8601 date string | Temporal ranges (e.g. created_at) |
tag5 | String | Source or namespace |
facets | List of strings | Labels, categories, ad-hoc metadata |
Supported operators
Scalar tags (tag1–tag5)
| Operator | Description |
|---|---|
"value" (raw string) | Exact match |
{"$eq": "value"} | Exact match |
{"$ne": "value"} | Not equal |
{"$gt": "v"} / {"$gte": "v"} | Greater than / greater than or equal |
{"$lt": "v"} / {"$lte": "v"} | Less than / less than or equal |
{"$gte": "a", "$lte": "b"} | Range (between) |
{"$begins_with": "prefix"} | Prefix match |
{"$in": ["a", "b"]} | Value is in list |
{"$nin": ["a", "b"]} | Value is not in list |
{"$contains": "substr"} | Substring match |
{"$exists": True} | Field is present and non-empty |
facets (multi-value)
| Operator | Description |
|---|---|
{"$subset": ["a", "b"]} | Contains all provided tokens |
{"$any": ["a", "b"]} | Contains at least one provided token |
{"$none": ["a", "b"]} | Contains none of the provided tokens |
{"$contains": "token"} | Contains the given token |
{"$size": N} | Facets list has exactly N tokens |