Open YashTotale opened 3 years ago
Adding support for .max(), .sum(), .min() would be a great help and improve the flexibility of this library.
.max()
.sum()
.min()
Other JSON-path implementations such as the Java one have already added support for these methods.
Examples:$.numbers.sum(), $.numbers.min(), $.numbers.max(), $.sum($.numbers.max())
$.numbers.sum()
$.numbers.min()
$.numbers.max()
$.sum($.numbers.max())
Thanks!
Could use this
Adding support for
.max()
,.sum()
,.min()
would be a great help and improve the flexibility of this library.Other JSON-path implementations such as the Java one have already added support for these methods.
Examples:
$.numbers.sum()
,$.numbers.min()
,$.numbers.max()
,$.sum($.numbers.max())
Thanks!