PublishedContentQuery search vs. the Backoffice's ExternalIndex search tool
c
Does anybody know (or know how to figure out) how the Backoffice's search tool performs a search (e.g. on the Settings > Examine Management tab, you can perform a search in the index and get some good, expected results)? When using
publishedContentQuery.Search()
for the same query, we're not getting the same results - just wondering if the Backoffice query gets "translated" into some kind of "search lingo" that would be possible to replicate when searching on the frontend side?
c
Thanks Anders 👍 (we found another issue of our own doing, that did fix the most weird discrepancies). Nice to know that there's not a lot of secret magic going on there.
m
Yeah with the backoffice just being a
nativeQuery
been hit a few times with the examine fluent approach on the front end not returning the same results, even down to extracting the query from the examine fluent approach and using in a nativequery giving what's expected over what is returned on the execute of the non nativequery 🤔 seems to be especially if
.Group()
is used
10 Views