* chore(tools): test curriculum order * chore: update orders * fix(tests): temporarily ignore cert super The Relational Databases cert being 'upcomingChanges' is breaking the tests. * fix: graphql query here * fix: use only one meta * chore: remove unnecessary superOrders * chore: zero-based indexing * fix: update mock * refactor: remove unused fixture Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "MongoDB and Mongoose",
|
|
"isUpcomingChange": false,
|
|
"dashedName": "mongodb-and-mongoose",
|
|
"order": 2,
|
|
"time": "5 hours",
|
|
"superBlock": "back-end-development-and-apis",
|
|
"superOrder": 5,
|
|
"challengeOrder": [
|
|
[
|
|
"587d7fb6367417b2b2512c06",
|
|
"Install and Set Up Mongoose"
|
|
],
|
|
[
|
|
"587d7fb6367417b2b2512c07",
|
|
"Create a Model"
|
|
],
|
|
[
|
|
"587d7fb6367417b2b2512c09",
|
|
"Create and Save a Record of a Model"
|
|
],
|
|
[
|
|
"587d7fb7367417b2b2512c0a",
|
|
"Create Many Records with model.create()"
|
|
],
|
|
[
|
|
"587d7fb7367417b2b2512c0b",
|
|
"Use model.find() to Search Your Database"
|
|
],
|
|
[
|
|
"587d7fb7367417b2b2512c0c",
|
|
"Use model.findOne() to Return a Single Matching Document from Your Database"
|
|
],
|
|
[
|
|
"587d7fb7367417b2b2512c0d",
|
|
"Use model.findById() to Search Your Database By _id"
|
|
],
|
|
[
|
|
"587d7fb8367417b2b2512c0e",
|
|
"Perform Classic Updates by Running Find, Edit, then Save"
|
|
],
|
|
[
|
|
"587d7fb8367417b2b2512c0f",
|
|
"Perform New Updates on a Document Using model.findOneAndUpdate()"
|
|
],
|
|
[
|
|
"587d7fb8367417b2b2512c10",
|
|
"Delete One Document Using model.findByIdAndRemove"
|
|
],
|
|
[
|
|
"587d7fb8367417b2b2512c11",
|
|
"Delete Many Documents with model.remove()"
|
|
],
|
|
[
|
|
"587d7fb9367417b2b2512c12",
|
|
"Chain Search Query Helpers to Narrow Search Results"
|
|
]
|
|
]
|
|
}
|