Counts the number of items. When you specify a property, it returns the number of non-null values for that property.

interface CountAggregateFunctionV3 {
    count: {
        property?: string;
    };
}

Properties

Properties

count: {
    property?: string;
}