在 postgrest 请求中使用“eq”时出现问题

问题描述 投票:0回答:1

我正在尝试在查询中从我的 SUPABASE 数据库的用户表中检索登录用户的信息。这就是我所做的:

val response = supabaseClient.postgrest[‘users’]
                    .select {
                        User::id eq userId
                    }
                    .decodeSingle<User>()

但是我收到此错误:未解析的参考:eq 我有 supabase:postgrest-kt 版本 3.0.3。 在文档上似乎使用“eq”是可以的。 我不明白问题出在哪里。 谢谢你

supabase postgrest
1个回答
0
投票

您应该在过滤器内部使用

eq
,而不是选择。

filter {
  User::id eq userId
}

文档在使用过滤器部分提到了它。

© www.soinside.com 2019 - 2024. All rights reserved.