You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if the API is at fault or the paging implementation here.
My request is simple:
letuserRequest=APIEndpoint.v1.users.get(
parameters:.init(
filterUsername: email,
filterRoles: role
))
for tryawaitpage in provider.paged(userRequest){
for user in page.data {print(user.attributes?.username ??"<nil>")}}
But I get different results running this again and again, some users are printed twice, and some are missing. There are between 70-110 users in the accounts I'm querying.
The text was updated successfully, but these errors were encountered:
Not sure if the API is at fault or the paging implementation here.
My request is simple:
But I get different results running this again and again, some users are printed twice, and some are missing. There are between 70-110 users in the accounts I'm querying.
The text was updated successfully, but these errors were encountered: