mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-05-03 23:20:04 -05:00
Update docs and CLI tutorial to new filter syntax.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user