Array Contains
const profiles = await ctx.db
.query("profiles")
.filter((q) => q.contains(q.field("tags"), tag._id))
.order("asc") // Assuming lower rank is better
.take(4); // Get top 4 profiles
convex/queries/external/tags.ts:255:46 - error TS2339: Property 'contains' does not exist on type 'FilterBuilder<{ document: { _id: Id<"profiles">; _creationTime: number; location?: { city?: string; state?: string; country?: string; coordinates: number[]; }; description?: string; tagIds?: Id<"tags">[]; tags?: string[]; ... 23 more ...; hasDeals: boolean; }; fieldPaths: ExtractFieldPaths<...> | "_id"; indexes: { ....'.
255 .filter((q) => q.contains(q.field("tags"), tag._id))
~~~~
Found 1 error in convex/queries/external/tags.ts:255
tags is an array
1 Reply
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!