fix: filter search content by posts that are not children
This commit is contained in:
+3
-1
@@ -278,7 +278,9 @@ export const getPostsBySearchTerm = query({
|
||||
handler: async (ctx, args) => {
|
||||
return await ctx.db
|
||||
.query('posts')
|
||||
.withSearchIndex('search_by_content', q => q.search('content', args.term))
|
||||
.withSearchIndex('search_by_content', q =>
|
||||
q.search('content', args.term).eq('parentPostId', undefined)
|
||||
)
|
||||
.paginate(args.paginationOpts);
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user