this.get('/gists/:id', function(schema, request) {
    let id = request.params.id;
    return schema.gists.find(id);
  });