Currently, I am using
val response = supabase.from("schedules")
.select()
{ filter {eq("user_id", userId) } } // Filtering by the user_id
to filter by the uder_id. However, I also want to filter by defualt (which is a bool value) after this. I cannot find any documentation about that. Can someone give me some suggestions?
I have tried things like
val response = supabase.from("schedules")
.select()
{ filter {eq("user_id", userId),eq("defualt", "TRUE") } }
and
val response = supabase.from("schedules")
.select()
{ filter {eq("user_id", userId) } }.select()
{ filter {eq("defualt", "TRUE") } }
but none of them work. I cannot find any documentation about that. Can someone give me some suggestions?
Currently, I am using
val response = supabase.from("schedules")
.select()
{ filter {eq("user_id", userId) } } // Filtering by the user_id
to filter by the uder_id. However, I also want to filter by defualt (which is a bool value) after this. I cannot find any documentation about that. Can someone give me some suggestions?
I have tried things like
val response = supabase.from("schedules")
.select()
{ filter {eq("user_id", userId),eq("defualt", "TRUE") } }
and
val response = supabase.from("schedules")
.select()
{ filter {eq("user_id", userId) } }.select()
{ filter {eq("defualt", "TRUE") } }
but none of them work. I cannot find any documentation about that. Can someone give me some suggestions?
Share Improve this question edited 5 hours ago Dale K 27.5k15 gold badges58 silver badges83 bronze badges asked 5 hours ago hcchcc 112 bronze badges1 Answer
Reset to default 1You have to use and
or or
functions when want to have multiple conditions. For example:
val response = supabase.from("schedules").select {
filter {
and {
eq("user_id", userId)
eq("default", true)
}
}
}