if (options.where[collection.primaryKey || 'id']) {
            this.connectionRun(r.table(collectionName).get(options.where[collection.primaryKey || 'id']).delete(), cb);
        } else {
            this.connectionRun(r.table(collectionName).filter(options.where).delete(), cb);
        }