Hi, I have json data where i want to have month wise cumulative count of all the new customers to the website on monthly basis from below example data:
[{"CustomerID": "Lalith_k01","AccountType": "silver","login": "2024-12-30"},
{"CustomerID": "Prakash_pmb","AccountType": "gold","login": "2025-01-29"},
{"CustomerID": "Nishanth_msk","AccountType": "premium","login": "2025-02-15"},
{"CustomerID": "Rony_bld","AccountType": "silver","login": "2025-01-03"},
{"CustomerID": "Lalith_k01","AccountType": "silver","login": "2024-12-15"},
{"CustomerID": "Prakash_pmb","AccountType": "gold","login": "2025-03-19"},
{"CustomerID": "Lalith_k01","AccountType": "premium","login": "2025-01-22"},
{"CustomerID": "Lalith_k01","AccountType": "silver","login": "2024-12-09"},
{"CustomerID": "Prakash_pmb","AccountType": "gold","login": "2025-03-07"},
{"CustomerID": "Nishanth_msk","AccountType": "premium","login": "2025-03-15"},
{"CustomerID": "kamal_std","AccountType": "silver","login": "2024-12-30"},
{"CustomerID": "kamal_std","AccountType": "gold","login": "2025-01-29"},
{"CustomerID": "Thirunath_dkm","AccountType": "premium","login": "2025-02-15"},
{"CustomerID": "Rony_bld","AccountType": "silver","login": "2025-02-13"},
{"CustomerID": "Lalith_k01","AccountType": "silver","login": "2024-12-01"},
{"CustomerID": "Prakash_pmb","AccountType": "gold","login": "2025-02-19"},
{"CustomerID": "Lalith_k01","AccountType": "premium","login": "2025-03-22"},
{"CustomerID": "Lalith_k01","AccountType": "silver","login": "2024-12-09"},
{"CustomerID": "Prakash_pmb","AccountType": "gold","login": "2025-03-07"},
{"CustomerID": "Nishanth_msk","AccountType": "premium","login": "2025-03-15"}]
Could you help me with the uql query and if required the transformations please?