Expand my Community achievements bar.

SOLVED

Please help to understand the query?

Avatar

Level 7

https:/{aem_host_url}/bin/querybuilder.json?fulltext=wps&p.limit=-1&path=/content/prudential/pru-com... 

 

Please help us to what this fulltext=wps

What is the use of this parameter. 

What is the impact of result if not used in the query.

1 Accepted Solution

Avatar

Correct answer by
Level 5

Hi @akshaybhujbale 
The fulltext parameter is used to search for specific text within the content repository.
In this case,fulltext=wps indicates that the query is searching for content (nodes or resources) containing the term “wps” within their text or metadata.

  • If the fulltext=wps parameter is omitted from the query, the search results will not be filtered based on the presence of the term “wps.”
  • Without this filter, the query will return a broader set of results, including content that may not be directly related to “wps.”

View solution in original post

3 Replies

Avatar

Level 10

Hi @akshaybhujbale ,

The query you provided is a GET request to the Query Builder API of Adobe Experience Manager (AEM). Here is a breakdown of the parameters used in the query:

- `aem_host_url`: This is the URL of the AEM instance where the Query Builder API is hosted.
- `fulltext=wps`: This parameter specifies the full-text search query to be executed. In this case, the search query is for the term "wps".
- `p.limit=-1`: This parameter specifies the maximum number of results to be returned. In this case, `-1` means that there is no limit to the number of results returned.
- `path=/content/prudential/pru-com...`: This parameter specifies the path in the AEM repository where the search should be performed.

The `fulltext` parameter is used to specify the search query to be executed. In this case, the search query is for the term "wps". If this parameter is not used in the query, then the search will not be executed and no results will be returned.

The impact of not using the `fulltext` parameter in the query is that the search query will not be executed and no results will be returned.

Avatar

Correct answer by
Level 5

Hi @akshaybhujbale 
The fulltext parameter is used to search for specific text within the content repository.
In this case,fulltext=wps indicates that the query is searching for content (nodes or resources) containing the term “wps” within their text or metadata.

  • If the fulltext=wps parameter is omitted from the query, the search results will not be filtered based on the presence of the term “wps.”
  • Without this filter, the query will return a broader set of results, including content that may not be directly related to “wps.”