udiamoncef.apollo-client-maven-plugin-tests.5.0.0.source-code.schema.graphqls Maven / Gradle / Ivy
type Query {
books: [Book!]!
authors: [Author!]!
}
type Book {
title: String!
author: Author!
id: Long!
}
type Author {
name: String!
}