Skip to content

Commit 145ab22

Browse files
committed
Merge branch '1.1.x'
2 parents 1e74820 + c650db8 commit 145ab22

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

spring-graphql-docs/src/docs/asciidoc/index.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,9 @@ builder.schemaResources(..)
260260

261261
The <<execution.graphqlsource, GraphQlSource section>> explains how to configure that with Spring Boot.
262262

263+
For an example with Apollo Federation, see
264+
https://github.com/apollographql/federation-jvm-spring-example[federation-jvm-spring-example].
265+
263266

264267
[[execution.graphqlsource.schema-traversal]]
265268
==== Schema Traversal

spring-graphql/src/test/resources/books/schema.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
type Query {
22
bookById(id: ID): Book
33
booksById(id: [ID]): [Book]
4-
books(id: ID, name: String, author: String): [Book!]
4+
books(id: ID, name: String, author: String): [Book!]!
55
booksByCriteria(criteria:BookCriteria): [Book]
66
booksByProjectedArguments(name: String, author: String): [Book]
77
booksByProjectedCriteria(criteria:BookCriteria): [Book]

0 commit comments

Comments
 (0)