We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08273d1 commit 3a19463Copy full SHA for 3a19463
README.md
@@ -150,14 +150,14 @@ The BookResolver might look something like this:
150
```java
151
class BookResolver implements GraphQLResolver<Book> /* This class is a resolver for the Book "Data Class" */ {
152
153
- private AuthorRepostory authorRepostory;
+ private AuthorRepository authorRepository;
154
155
public BookResolver(AuthorRepository authorRepository) {
156
- this.authorRepostory = authorRepository;
+ this.authorRepository = authorRepository;
157
}
158
159
public Author author(Book book) {
160
- return authorRepostory.findById(book.getAuthorId());
+ return authorRepository.findById(book.getAuthorId());
161
162
163
```
0 commit comments