} else if (command.equalsIgnoreCase("count")) {
return commandCount(command, query);
} else if (command.equalsIgnoreCase("distinct")) {
String collectionName = query.get(command).toString();
MongoCollection collection = resolveCollection(collectionName, true);
return collection.handleDistinct(query);
} else if (command.equalsIgnoreCase("drop")) {
return commandDrop(query);
} else if (command.equalsIgnoreCase("dropDatabase")) {
return commandDropDatabase();
} else if (command.equalsIgnoreCase("dbstats")) {