Interface IApiContentQueryProvider
Concrete implementation of content querying (e.g. based on Examine)
Namespace: Umbraco.Cms.Core.DeliveryApi
Assembly: Umbraco.Core.dll
Syntax
public interface IApiContentQueryProvider
Methods
View SourceAllContentSelectorOption()
Returns a selector option that can be applied to fetch "all content" (i.e. if a selector option is not present when performing a search).
Declaration
SelectorOption AllContentSelectorOption()
Returns
Type | Description |
---|---|
Selector |
ExecuteQuery(SelectorOption, IList<FilterOption>, IList<SortOption>, String, ProtectedAccess, Boolean, Int32, Int32)
Returns a page of item ids that passed the search criteria.
Declaration
PagedModel<Guid> ExecuteQuery(SelectorOption selectorOption, IList<FilterOption> filterOptions, IList<SortOption> sortOptions, string culture, ProtectedAccess protectedAccess, bool preview, int skip, int take)
Parameters
Type | Name | Description |
---|---|---|
Selector |
selectorOption | The selector option of the search criteria. |
IList<Filter |
filterOptions | The filter options of the search criteria. |
IList<Sort |
sortOptions | The sorting options of the search criteria. |
System. |
culture | The requested culture. |
Protected |
protectedAccess | Defines the limitations for querying protected content. |
System. |
preview | Whether or not to search for preview content. |
System. |
skip | Number of search results to skip (for pagination). |
System. |
take | Number of search results to retrieve (for pagination). |
Returns
Type | Description |
---|---|
Paged |
A paged model containing the resulting IDs and the total number of results that matching the search criteria. |