Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithRun the data thru an AGG node with this code:
c=count()
emit c as Records
where lastInGroup
set your GroupBy parameter to a constant value such as "1"
====
then, take that output and use a Lookup node with this code:
emit 1:*
emit 2:Records as Records
set both of the match keys again to a constant value such as "1"