You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/60-schema-validation/3-validate-authors.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This is an advanced exercise that requires you to write code. If you get stuck a
13
13
1. Start by opening the `server/src/schema-validation/apply-schema.ts` file in your GitHub codespace and uncomment lines 41-61.
14
14
1. Complete the tasks marked with `// TODO` comments.
15
15
1. Execute the script again to apply the schema to the `authors` collection.
16
-
```bash
16
+
```
17
17
cd server
18
18
npx tsx src/schema-validation/apply-schema.ts
19
19
@@ -24,7 +24,7 @@ This is an advanced exercise that requires you to write code. If you get stuck a
24
24
<TabItemvalue="java"label="☕️ Java Spring Boot">
25
25
In this advanced exercise, you will extend the [SchemaValidationConfig](https://github.com/mongodb-developer/library-management-system/blob/java-server/java-server/src/main/java/com/mongodb/devrel/library/infrastructure/config/SchemaValidationConfig.java) class to support the authors collection.
26
26
Two methods are already defined in the class, but both are left with `// TODO` markers for you to implement:
Copy file name to clipboardExpand all lines: docs/75-optimize/2-patterns.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ At this point, we also have to do additional queries to display the first five r
77
77
Let's look at the current code that is used to retrieve a single book.
78
78
Open the [`BookService`](https://github.com/mongodb-developer/library-management-system/blob/java-server/java-server/src/main/java/com/mongodb/devrel/library/domain/service/BookService.java) class and check the `getBook` method:
0 commit comments