Cannot retrieve data

Hi, I am making a simple query (Swift language) over a new created class and the query return 0 results, even though the class is not empty.

The query looks like this:

    let dataQuery = BackendlessDataQuery()

    let bc = Backendless.sharedInstance().data.of(AdsVideo).find(dataQuery, response: { (theResponse) -> Void in

            print("The response: \(theResponse)")

        }) { (theFault) -> Void in

            print("The fault: \(theFault)")

    }

I’ve had this problem before and you guys solved it after, as you said, you made some changes on the server side. My app id is: 5F3B25A0-9BAA-AE5B-FF7E-88AE2D82A500.

Hi Cristian!

In data table AdsVideo you have DENY permission for FIND operation (for NotAuthenticated user).
As the result you can not retrieve data as not NotAuthenticated user.
https://monosnap.com/file/6AbM3be2mCiR10gReBW57IIKrHjIC5
Regards,
Kate.

Ok, but for the authenticated user it was set with permission (the green mark) and I made that query using an authenticated user.

Make sure you also allowed FIND permission for IOSUser role.
And you not added special permissions for concrete users (on Users Permissions page).