ObjectBox has QueryBuilder's method in with arrays of long and int as a parameter:
QueryBuilder<T> in(Property property, int[] values)
However, there are some cases when the id of an object is String. How can we query a list of elements using an array of their String uids?
For example, we are caching Android Contacts and want to find subsets basing on their LOOKUP_KEY.