Skip to content

Commit

Permalink
Merge pull request #42 from zengyufei/patch-1
Browse files Browse the repository at this point in the history
Book:::class三个冒号,改成两个
  • Loading branch information
babyfish-ct authored Oct 30, 2024
2 parents 77eb60b + 2413e1c commit 64a810c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class BookController(
* Simple Book DTO which can only access `id` and `name` of `Book` itself
*/
val SIMPLE_BOOK =
newFetcher(Book:::class).by {
newFetcher(Book::class).by {
name()
}

Expand All @@ -128,7 +128,7 @@ class BookController(
* but also associated `BookStore` and `Author` objects with names
*/
private val COMPLEX_BOOK =
newFetcher(Book:::class).by {
newFetcher(Book::class).by {
allScalarFields()
store {
name()
Expand Down

0 comments on commit 64a810c

Please sign in to comment.