FieldGroupByDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Represents the field group by type for graphql
public class FieldGroupByDto
Inheritance Object → FieldGroupByDto
Properties
GroupByAttributeNameList
Attribute names to group by
public IEnumerable<string> GroupByAttributeNameList { get; set; }
Property Value
CountAttributeNameList
Attribute names whose existence to count, NULL values are not counted.
public IEnumerable<string> CountAttributeNameList { get; set; }
Property Value
MaxValueAttributeNameList
Attributes names whose maximum value is to be determined.
public IEnumerable<string> MaxValueAttributeNameList { get; set; }
Property Value
MinValueAttributeNameList
Attributes names whose minimum value is to be determined.
public IEnumerable<string> MinValueAttributeNameList { get; set; }
Property Value
AvgAttributeNameList
Attributes names whose average value is to be determined.
public IEnumerable<string> AvgAttributeNameList { get; set; }
Property Value
Constructors
FieldGroupByDto()
public FieldGroupByDto()