Update docs and CLI tutorial to new filter syntax.

This commit is contained in:
Sebastian Jeltsch
2025-05-18 12:43:18 +02:00
parent 8ac89bda27
commit 7318794f95
4 changed files with 20 additions and 14 deletions
+7 -1
View File
@@ -9,7 +9,13 @@ const m = await movies.list({
limit: 3,
},
order: ["rank"],
filters: ["watch_time[lt]=120"],
filters: [
{
column: "watch_time",
op: "lessThan",
value: "120",
},
],
});
console.log(m.records);