London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
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.