Mikael LirbankM
Convex Community3y ago
11 replies
Mikael Lirbank

I think I know the answer to this but I

I think I know the answer to this, but I want to make sure.

Consider this schema:
  threads: defineTable({
    title: v.optional(v.string()),
    memberIds: v.array(v.id("users")),
    isClosed: v.boolean(),
  }).index("is_closed", ["isClosed"]),


There is no way to query for all threads where a certain users._id is a member?
Was this page helpful?