I am using Parse as database. I would like to ask if there are over 1000 items in the Data_db, where the username is unique.
Code:
ParseQuery<ParseObject> query = ParseQuery.getQuery("Data_db");
query.whereEqualTo("username", edittext_user.getText().toString());
query.setLimit(1);
Question:
While I know fetching over 1000 dataset we need to use the .setSkip(1000) function and performing looping, I would like to ask how about querying a specific user? Is it also limited to the first 1000 rows? and if yes, how could such user beyond 1000 could be queried?
Thanks!