z
Size: a a a
z
z
R

R
z
R
R

z
z
R
z
z
R
z
z
z
R
z
z
Project.findOne({
where: {title: 'aProject'},
attributes: ['id', ['name', 'title']]
}).then(project => {
// project will be the first entry of the Projects table with the title 'aProject' || null
// project.get('title') will contain the name of the project
})