getOne(id) {
    return new this.ProjectsModel()
    .query()
    .where(this.context.column(`id`), id)
    .then(projects => this.context.parse(projects[0]));