exports.get = function get (id, fn) {
  if (!ObjectId.isValid(id)) {
    log('ObjectId %s is not valid', id)
    return fn(null)
  }