You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can pass an array to where, like:
```ts
Post.where({ id: [1, 2, 3] })
```
This will be converted to `?filter[id]=1,2,3`.
This logic was already working, but the type was incorrect. Added a test
for good measure.
0 commit comments