zidZ
Convex Community2y ago
8 replies
zid

.neq?

In the docs I see q.neq(l, r) l !== r is a valid filter operator, but it doesnt seem to be working?

Error: [CONVEX Q(user:getThreads)] Uncaught TypeError: q.eq(...).eq(...).neq is not a function

        .withIndex(
          `by_districtsId_status_userId_${filter}`,
          (q) =>
            q
              .eq("districtsId", districtsId)
              .eq("status", "visible")
              .neq("userId", userId)
        )
Was this page helpful?