Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
I think you can do something like this:
var result =
...
.HistogramFacetFor(x => ((IChangeTrackable) x).Created, DateInterval.Year)
.GetResult();
var facets = result.HistogramFacetFor<IChangeTrackable>(x => x.Created);
I want to create a histogramfacet based on when the page or file was created. Making a histogram facet with the published date was easy, but the created date is not part of ISearchContent.