Xhurian Shaba

Results 6 issues of Xhurian Shaba

Issue: Black Screen, no environments, no lights and no meshes load at all, no explicit error or warnings, but nothing actually loads. Run on a real IOS device through a...

Why cant v.union be used as validators, it is very inconvenient to wrap them with an object just so it published

maybe an addition to `ctx` would be best, something like ```ts const {ip, userAgent} = ctx.request; ```

Pretty much the title, if we could have computed values in the database level, it would make filtering much easier, Example: ```ts posts: defineTable({ ratings: v.array(v.number()) }, { computed: {...

### External Packages Fail in Monorepos Due to Dependency Hoisting - Major DX Issue **Description** There's a significant issue when using Convex's `externalPackages` for node envs feature within monorepos. The...

I have this case that I think is applicable to a lot of people: Below is a table in my schema: ```ts messages: defineTable({ room: v.id("rooms"), replyOf: v.id("messages"), content: v.union(...