Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
MetadataFilter
type FilterCondition = | { $eq: string | number } | { $ne: string | number } | { $gt: string | number } | { $gte: string | number } | { $lt: string | number } | { $lte: string | number } | { $in: (string | number)[] } | { $nin: (string | number)[] } | { $near: string };
$eq
$ne
$gt
$gte
$lt
$lte
$in
$nin
$near
// Documents whose `price` is between 50 and 100 { field: 'price', condition: { $gte: 50 } } { field: 'price', condition: { $lt: 100 } }