[Ember Data] Filter Data by Column

Hey,

I have all my datas with a findAll() but I want now to retrieve datas who match a specific column, for example, all the rows where the mail is equal to “test@gmail.com

I try this but it don’t work :frowning:

return this.store.query('person', {
      filter : { email : 'test@gmail.com'}
    });