2 results found
-
Order of content fields in Content Graph _fulltext property
When a text field is indexed by Content Graph in the _fulltext property, the values in the fields are appearing out of order from how they are configured in the CMS, where nested content is appearing before outer container content.
For example, our page contains an accordion block. The accordion block has a content area which allows topics blocks. The topics blocks contain a rich text field.
When querying graph the _fulltext property shows the values of the indexed content in this order:
Topics block content
Topics block name
Accordion block name
Container block nameWe would expect to see…
2 votesWe’re currently gathering additional feedback on this idea. If you have any more context, examples, or specific use cases, please share them - it really helps us understand how this would best support your workflow. Thanks for contributing to the conversation!
-
Site specific SearchProvider for Content Graph
The package Optimizely.ContentGraph.Cms 4.1.0 introduced a SearchProvider that enables searching within the page tree.
We would like this SearchProvider to respect the Query.SearchRoots property so that searches can be limited to the current page. This would be valuable for us, as we manage more than 60 sites with large amounts of content.
With Find (Search & Navigation), we were able to override the SearchProvider and inject the search root ourselves, for example:
public override IEnumerable<SearchResult> Search(Query query)
{
var startPageId = ContentReference.StartPage?.ID;
var startPage = startPageId > 0 ? startPageId.ToString() : "1";
query.SearchRoots = new[] { startPage };
return base.Search(query);…1 vote
- Don't see your idea?