File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
spring-graphql/src/test/resources/books
spring-graphql-docs/src/docs/asciidoc Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -260,6 +260,9 @@ builder.schemaResources(..)
260
260
261
261
The <<execution.graphqlsource, GraphQlSource section>> explains how to configure that with Spring Boot.
262
262
263
+ For an example with Apollo Federation, see
264
+ https://github.com/apollographql/federation-jvm-spring-example[federation-jvm-spring-example].
265
+
263
266
264
267
[[execution.graphqlsource.schema-traversal]]
265
268
==== Schema Traversal
Original file line number Diff line number Diff line change 1
1
type Query {
2
2
bookById (id : ID ): Book
3
3
booksById (id : [ID ]): [Book ]
4
- books (id : ID , name : String , author : String ): [Book ! ]
4
+ books (id : ID , name : String , author : String ): [Book ! ]!
5
5
booksByCriteria (criteria :BookCriteria ): [Book ]
6
6
booksByProjectedArguments (name : String , author : String ): [Book ]
7
7
booksByProjectedCriteria (criteria :BookCriteria ): [Book ]
You can’t perform that action at this time.
0 commit comments