This is the code:
int[] queryIds=new int[3];
queryIds[0]=1001;
queryIds[1]=1002;
queryIds[2]=1003;
Query myQuery = QueryBuilder.build("idint", queryIds , Operator.INLIST);
Storage storage=storageService.findDocumentsByQueryWithPaging(dbName, tableName, myQuery, entriesToGet, 0);
I'm getting the following exception:
com.shephertz.app42.paas.sdk.java.App42NotFoundException: {"app42Fault":{"httpErrorCode":404,"appErrorCode":2608,"message":"Not Found","details":"No document in the collection '_pvpplayers0' exists for given query"}}
However there are documents in collection with "idint" that i query.