function list(req, res, next) {
  const { limit = 50, skip = 0, showKeys = false } = req.query;
  Entity.list({ limit, skip, showKeys })
    .then(entities => res.json(entities))
    .catch(e => next(e));