Is it possible to take all of the registration count from the notification hub service using nodejs?
function from the nodejs as follow :
listRegistrationsByTag(tag, optionsopt, callback)
listRegistrations(optionsopt, callback)
but it can only list out maximum of 100 accounts. How would we know the maximum number of accounts via these function. For example, I have about 100,000 users and I wish to know that how many registration has been added to the notification hubs by tags and also the total number of all registrations. For the two functions above, it have options to take number of registration and skipping numbers but still missing the total numbers by tags or by this service.
You can refer to the documentation here
Please help to advise on this.