mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-21 12:25:14 +00:00
docs(sails): add updateOne, destroyOne and archiveOne
This commit is contained in:
parent
2db929607b
commit
6d47c4b9e2
@ -492,6 +492,10 @@ MyModel.replaceCollection()
|
|||||||
// saving them as new records in the built-in Archive model, then destroying the originals.
|
// saving them as new records in the built-in Archive model, then destroying the originals.
|
||||||
MyModel.archive(criteria)
|
MyModel.archive(criteria)
|
||||||
|
|
||||||
|
// Archive ("soft-delete") the record that matches the specified criteria,
|
||||||
|
// saving it (if it exists) as a new record in the built-in Archive model, then destroying the original.
|
||||||
|
MyModel.archiveOne(criteria);
|
||||||
|
|
||||||
// Get the total number of records matching the specified criteria.
|
// Get the total number of records matching the specified criteria.
|
||||||
MyModel.count(criteria)
|
MyModel.count(criteria)
|
||||||
|
|
||||||
@ -523,10 +527,16 @@ MyModel.createEach(initialValues).fetch() // Created records will be returned
|
|||||||
MyModel.update(criteria, valuesToSet)
|
MyModel.update(criteria, valuesToSet)
|
||||||
MyModel.update(criteria, valuesToSet).fetch() // Updated records will be returned
|
MyModel.update(criteria, valuesToSet).fetch() // Updated records will be returned
|
||||||
|
|
||||||
|
// Update the record that matches the given criteria, if one exists.
|
||||||
|
MyModel.updateOne(criteria).set(valuesToSet);
|
||||||
|
|
||||||
// Destroy records in your database that match the given criteria.
|
// Destroy records in your database that match the given criteria.
|
||||||
MyModel.destroy(criteria)
|
MyModel.destroy(criteria)
|
||||||
MyModel.destroy(criteria).fetch() // Destroyed record will be returned
|
MyModel.destroy(criteria).fetch() // Destroyed record will be returned
|
||||||
|
|
||||||
|
// Destroy the record in your database that matches the given criteria, if one exists.
|
||||||
|
MyModel.destroyOne(criteria);
|
||||||
|
|
||||||
// Access the datastore for a particular model.
|
// Access the datastore for a particular model.
|
||||||
MyModel.getDatastore()
|
MyModel.getDatastore()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user