Finding records with ember-data

A simple find such as:

App.Visitor.find({passportNumber: 1234})

Is doing a remote request but not nesting the params under visitors. The passportNumber key is on the top level. Is this expected?

Yes, that’s expected. Params are only nested when you’re saving.