Replies: 1 comment 1 reply
|
Can you elaborate what you're trying to do, together with expected and actual result? |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I want to do somethink like this:
const cattleIdList = [1,2,3,4]
const { data:, error } = await this.db.from(this.table).select().eq("user_id", await this.getUserId())
.in("father", cattleIdList).in("mother", cattleIdList)
This does not work. I need a unique list. How could i do it?
All reactions