Methods like `destroy` require `id`, and can't get the actual model as a parameter. A resolver would get the idAttribute from the model. For example: ``` js Article.destroy(article) ``` will access `article[Article.idAttribute]` to find ID in case this is an object. Thoughts?