collection = cmdStr.substring(firstIndexOfDot + 1, lastIndexOfDot);
}
String jsonStr = query.substring(startIndex + 1, endIndex);
int docsLimit = Integer.parseInt(limit);
int docsSkip = Integer.parseInt(skip);
return documentService.executeQuery(dbName, collection, command, jsonStr, fields, sortBy, docsLimit, docsSkip, allKeys);
}
});
return response;
}