v.apollo-client-maven-plugin-tests.1.1.2.source-code.schema.graphqls Maven / Gradle / Ivy
The newest version!
type Query {
books: [Book!]!
authors: [Author!]!
}
type Book {
title: String!
author: Author!
}
type Author {
name: String!
}