{"id":19545,"date":"2015-07-07T16:06:42","date_gmt":"2015-07-07T10:36:42","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=19545"},"modified":"2016-08-30T10:48:45","modified_gmt":"2016-08-30T05:18:45","slug":"full-text-search-in-aem-using-query-builder","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/","title":{"rendered":"Full Text Search in AEM using Query Builder"},"content":{"rendered":"<p>The <em style=\"font-style: italic !important;\">full-text field search<\/em> allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage.<\/p>\n<p>A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains \u201cI want to perform text search in AEM\u201d.<\/p>\n<p>To implement the <a title=\"AEM Consulting and Development\" href=\"https:\/\/tothenewco.pro\/wcm\/cq-aem-development-consulting\">same in AEM6<\/a>, I have used <a href=\"https:\/\/docs.adobe.com\/docs\/en\/aem\/6-0\/develop\/search\/querybuilder-api.html\">QueryBuilder<\/a> API which is a service for building Queries for searching the Java Content Repository and are easily extensible.<\/p>\n<p><strong>Demostration with code:<\/strong><\/p>\n<p>Populate in a map all the predicates with the values.<br \/>\nFulltext contains the value of the <em style=\"font-style: italic !important;\">searchKey<\/em> which will be searched in the url and the content of the <em style=\"font-style: italic !important;\">cq:page<\/em>, under the specified <em style=\"font-style: italic !important;\">path<\/em><\/p>\n<p>[java]<\/p>\n<p>String pageTitle, pagePath<br \/>\nMap params = [:]<br \/>\nparams[&quot;path&quot;] = path<br \/>\nparams[&quot;type&quot;] = &quot;cq:Page&quot;<br \/>\nparams[&quot;fulltext&quot;] = searchKey<br \/>\nparams[&quot;orderby&quot;] = &quot;@jcr:score&quot;<\/p>\n<p>[\/java]<\/p>\n<p>now use Query interface to create a query object that will in turn use builder object of Query Builder interface to build the query.<\/p>\n<p>[java]<\/p>\n<p>Query query = builder.createQuery(PredicateGroup.create(params), session)<br \/>\n\/\/for pagination<br \/>\nquery.setStart(startPage) \/\/ same as params[&quot;p.offset&quot;] = startPage.toString()<br \/>\nquery.setHitsPerPage(offset) \/\/ same as params[&quot;p.limit&quot;] = offset.toString()<\/p>\n<p>[\/java]<\/p>\n<p><em style=\"font-style: italic !important;\">searchResult<\/em> will contain the result of the JCR query. A <em style=\"font-style: italic !important;\">hit<\/em> represents a single search result which is adapted to a page so as to fetch the page title and page url for display.<\/p>\n<p>[java]<br \/>\n        SearchResult searchResult = query.result<br \/>\n        Long totalHits = searchResult.getTotalMatches()<br \/>\n        for (Hit hit : searchResult.hits) {<\/p>\n<p>            Page page = hit.resource.adaptTo(Page)<br \/>\n            pageTitle = page.title<br \/>\n            pagePath = page.path<br \/>\n            searchHit = new JSONObject()<br \/>\n            searchHit.put(&quot;totalHits&quot;, totalHits)<br \/>\n            searchHit.put(&quot;path&quot;, pagePath)<\/p>\n<p>            if (!pageTitle) {<br \/>\n                pageTitle = pagePath.substring(pagePath.lastIndexOf(&#8216;\/&#8217;) + 1, pagePath.length())<\/p>\n<p>            }<br \/>\n            searchHit.put(&quot;title&quot;, pageTitle)<\/p>\n<p>            resultArray.put(searchHit)<br \/>\n        }<br \/>\n        resultObject.put(&quot;data&quot;, resultArray)<br \/>\n        return resultObject<br \/>\n[\/java]<\/p>\n<p><span style=\"font-size: large;\">The desired output looks like below:<\/span><br \/>\n<a href=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-13-094316.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignleft wp-image-19555 size-full\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-13-094316.png\" alt=\"Search Result\" width=\"406\" height=\"367\" \/><\/a><br \/>\nThis much should be sufficient to design a working <em>Site Search component<\/em> in AEM that performs\u00a0<em>f<\/em><em>ulltext Search\u00a0<\/em>and displays paginated results. I will introduce advanced <em>fulltext\u00a0<\/em>queries\u00a0in my forthcoming post.<\/p>\n<p>Stay tuned!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains [&hellip;]<\/p>\n","protected":false},"author":191,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":432,"footnotes":""},"categories":[1],"tags":[4847,3783,1657],"class_list":["post-19545","post","type-post","status-publish","format-standard","hentry","category-technology","tag-aem","tag-aem-6-1","tag-aem-components"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Rachna Rajpal\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Full Text Search in AEM using Query Builder | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"article:tag\" content=\"technology\" \/>\n\t\t<meta property=\"article:tag\" content=\"aem\" \/>\n\t\t<meta property=\"article:tag\" content=\"aem 6.1\" \/>\n\t\t<meta property=\"article:tag\" content=\"aem components\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-07-07T10:36:42+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-08-30T05:18:45+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Full Text Search in AEM using Query Builder | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#article\",\"name\":\"Full Text Search in AEM using Query Builder | TO THE NEW Blog\",\"headline\":\"Full Text Search in AEM using Query Builder\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rachna-rajpal\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/05\\\/Screenshot-from-2015-05-13-094316.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#articleImage\"},\"datePublished\":\"2015-07-07T16:06:42+05:30\",\"dateModified\":\"2016-08-30T10:48:45+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#webpage\"},\"articleSection\":\"Technology, AEM, AEM 6.1, aem components\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#listItem\",\"name\":\"Full Text Search in AEM using Query Builder\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#listItem\",\"position\":3,\"name\":\"Full Text Search in AEM using Query Builder\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rachna-rajpal\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rachna-rajpal\\\/\",\"name\":\"Rachna Rajpal\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/bd846ee4-6e1f-4ab5-8695-759085c07d49_rachna.rajpal@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Rachna Rajpal\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/\",\"name\":\"Full Text Search in AEM using Query Builder | TO THE NEW Blog\",\"description\":\"The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \\u201cperform search\\u201d or \\u201ctext search\\u201d or \\u201ctext\\u201d will return a comment that contains\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/full-text-search-in-aem-using-query-builder\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rachna-rajpal\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rachna-rajpal\\\/#author\"},\"datePublished\":\"2015-07-07T16:06:42+05:30\",\"dateModified\":\"2016-08-30T10:48:45+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Full Text Search in AEM using Query Builder | TO THE NEW Blog","description":"The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains","canonical_url":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#article","name":"Full Text Search in AEM using Query Builder | TO THE NEW Blog","headline":"Full Text Search in AEM using Query Builder","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/rachna-rajpal\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/05\/Screenshot-from-2015-05-13-094316.png","@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#articleImage"},"datePublished":"2015-07-07T16:06:42+05:30","dateModified":"2016-08-30T10:48:45+05:30","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#webpage"},"articleSection":"Technology, AEM, AEM 6.1, aem components"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#listItem","name":"Full Text Search in AEM using Query Builder"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#listItem","position":3,"name":"Full Text Search in AEM using Query Builder","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/rachna-rajpal\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/rachna-rajpal\/","name":"Rachna Rajpal","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/bd846ee4-6e1f-4ab5-8695-759085c07d49_rachna.rajpal@tothenew.com.jpg","width":96,"height":96,"caption":"Rachna Rajpal"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/","name":"Full Text Search in AEM using Query Builder | TO THE NEW Blog","description":"The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/rachna-rajpal\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/rachna-rajpal\/#author"},"datePublished":"2015-07-07T16:06:42+05:30","dateModified":"2016-08-30T10:48:45+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"article","og:title":"Full Text Search in AEM using Query Builder | TO THE NEW Blog","og:description":"The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains","og:url":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","article:tag":["technology","aem","aem 6.1","aem components"],"article:published_time":"2015-07-07T10:36:42+00:00","article:modified_time":"2016-08-30T05:18:45+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Full Text Search in AEM using Query Builder | TO THE NEW Blog","twitter:description":"The full-text field search allows you to look for a field anywhere in a webpage, be it the title, content, or the url of a webpage. A full-text search shall match whole words. For example, a full-text search on comments that contains \u201cperform search\u201d or \u201ctext search\u201d or \u201ctext\u201d will return a comment that contains","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"19545","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"article","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 13:28:06","updated":"2024-02-29 08:40:48","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tFull Text Search in AEM using Query Builder\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Full Text Search in AEM using Query Builder","link":"https:\/\/tothenewco.pro\/blog\/full-text-search-in-aem-using-query-builder\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/19545","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/191"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=19545"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/19545\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=19545"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=19545"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=19545"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}