最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

kotlin - Koltlin: How to use filter eq to do the filter with more than 1 conditions - Stack Overflow

programmeradmin0浏览0评论

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 badges
Add a comment  | 

1 Answer 1

Reset to default 1

You 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)
    }
  }
}
发布评论

评论列表(0)

  1. 暂无评论