|
1 | 1 | {
|
2 |
| - "Author": ["books", "createdAt", "firstName", "id", "lastName", "updatedAt"], |
3 |
| - "Book": ["author", "createdAt", "id", "title", "updatedAt"], |
4 |
| - "Mutation": ["saveAuthor", "saveBook"], |
5 |
| - "SaveAuthorInput": ["firstName", "id", "lastName"], |
| 2 | + "Author": ["books", "createdAt", "firstName", "id", "lastName", "numberOfReviews", "updatedAt"], |
| 3 | + "Book": ["author", "createdAt", "id", "reviews", "title", "updatedAt"], |
| 4 | + "BookReview": ["book", "createdAt", "id", "rating", "reviewer", "updatedAt"], |
| 5 | + "Mutation": ["saveAuthor", "saveBook", "saveBookReview", "saveReviewer"], |
| 6 | + "Reviewer": ["age", "bookReviews", "createdAt", "id", "name", "updatedAt"], |
| 7 | + "SaveAuthorInput": ["firstName", "id", "lastName", "numberOfReviews"], |
6 | 8 | "SaveAuthorResult": ["author"],
|
7 | 9 | "SaveBookInput": ["authorId", "id", "title"],
|
8 |
| - "SaveBookResult": ["book"] |
| 10 | + "SaveBookResult": ["book"], |
| 11 | + "SaveBookReviewInput": ["bookId", "id", "rating", "reviewerId"], |
| 12 | + "SaveBookReviewResult": ["bookReview"], |
| 13 | + "SaveReviewerInput": ["age", "id", "name"], |
| 14 | + "SaveReviewerResult": ["reviewer"] |
9 | 15 | }
|
0 commit comments