#Query Exception list of ids
3 messages · Page 1 of 1 (latest)
Here's how you can use it to exclude specific product IDs from your query
entity: "product",
fields: ["id", "title"],
filters: {
id: {
$nin: ["prod_01", "prod_02", "prod_03"] // List of product IDs you want to exclude
}
}
})```
Exactly what i'm looking for! Thank you very much @sharp sluice