|
|
|
|
@ -18,15 +18,19 @@ package org.springframework.boot.graphql.test.autoconfigure;
@@ -18,15 +18,19 @@ package org.springframework.boot.graphql.test.autoconfigure;
|
|
|
|
|
|
|
|
|
|
public class Book { |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("NullAway.Init") |
|
|
|
|
String id; |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("NullAway.Init") |
|
|
|
|
String name; |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("NullAway.Init") |
|
|
|
|
int pageCount; |
|
|
|
|
|
|
|
|
|
@SuppressWarnings("NullAway.Init") |
|
|
|
|
String author; |
|
|
|
|
|
|
|
|
|
public Book() { |
|
|
|
|
protected Book() { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Book(String id, String name, int pageCount, String author) { |
|
|
|
|
|