Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: xathrasSree, you wouldn't use a filter node to do that. I'd recommend an agg ex node, sort by value of 1 (all) and then the following as code in the agg ex:
minDate = groupMin(Example)
maxDate = groupMax(Example)
emit minDate, maxDate
All the best
Wayne