Add exists method on Model and Query to check if the record exists in the store.
// Check if there's at least 1 record in the store.
User.exists()
// Check if there's at least 1 user with the name of 'John' in the store.
User.query().where('name', 'John').exists()
Add
existsmethod on Model and Query to check if the record exists in the store.