Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个查询,它将返回看到的用户列表
seen_user(where: {user: {_eq: $user}}) { user }
如何查询未看到的用户的个人资料
userprofile(where: {_not: results of the above query) { username pictures { url } } }
如何在单个查询中执行此操作?