aggCount
Returns the number of items in a set.
Data
Count quantity items:
{d.cars[].qty:aggCount}
Count quantity items by sorting "sort" values above 1:
{d.cars[sort>1].qty:aggCount}
Count quantity items by multiplying the "qty" by the "sort" attribute:
{d.cars[sort>1].qty:mul(.sort):aggCount:formatC}
Last updated