1
0
Fork 0
arangodb/Documentation/DocuBlocks/JSF_foxx_repository_replace.md

16 lines
278 B
Markdown

`FoxxRepository#replace(model)`
Find the model in the database by its *_id* and replace it with this version.
Expects a model. Sets the revision of the model.
Returns the model.
@EXAMPLES
```javascript
myModel.set('name', 'Jan Steemann');
repository.replace(myModel);
```