Search.../

query

Returns the PostsQueryBuilder object used to get the current results.

Description

Use query to create and run a new query by chaining additional PostsQueryBuilder functions to it. You can filter only on properties that haven't already been used in the previous PostsQueryBuilder.

Was this helpful?

Get query that produced the current result

Copy Code
1const originalQuery = results.query;
2
Perform a query and get query from the result

Copy Code
1import { posts } from 'wix-blog-backend';
2
3export async function myQueryFunction() {
4 const results = await posts.queryPosts().find();
5
6 return results.query;
7}
8