Limitation of query length

Hi guys!

Does backendless have limitations for length of query string?

In my project I want to:

  1. get all users phones:
    List<String> phones = Contact.getPhones();2) Create long query:result = TextUtil.Intersperse(phones, “,”);
    String whereClause = “phone_number” + " in (" + result + “)”;
    BackendlessDataQuery dataQuery = new BackendlessDataQuery(whereClause);3) Get all users (friends):
    Backendless.Data.of(BackendlessUser.class).find(dataQuery, new AsyncCallback<BackendlessCollection<BackendlessUser>>() {

Hi Oleg,

No, there is no limit on the length of the query string (unless you use REST, where the limits of the URL length are applicable).

Mark