Interface ICompositeAggregationSource
A values source for ICompositeAggregation
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface ICompositeAggregationSource
Properties
| Edit this page View SourceField
The field from which to extract value
Declaration
[DataMember(Name = "field")]
Field Field { get; set; }
Property Value
Type | Description |
---|---|
Field |
MissingBucket
By default documents without a value for a given source are ignored. It is possible to include them in the response as null by setting this to true
Declaration
[DataMember(Name = "missing_bucket")]
bool? MissingBucket { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Name
The name of the source
Declaration
[IgnoreDataMember]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Order
Defines the direction of sorting for each value source. Defaults to Ascending
Declaration
[DataMember(Name = "order")]
SortOrder? Order { get; set; }
Property Value
Type | Description |
---|---|
SortOrder? |
SourceType
The type of the source
Declaration
[IgnoreDataMember]
string SourceType { get; }
Property Value
Type | Description |
---|---|
string |