In this scenario back4app initialised successfully, user login and signup also working, but when I am fetching all user list by using the below code, its returning blank array, without any error, there are three users in the User class in back4app. Can anyone help?
let query = PFQuery(className: "User")
query.findObjectsInBackground { (result, err) in
print(result)
print(err)
}