File: schema.graphql

package info (click to toggle)
golang-github-graph-gophers-graphql-go 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,516 kB
  • sloc: sh: 373; javascript: 21; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 293 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
schema { query: Query }

type Query { 
    authors: [Author!]! 
}

type Author {
    id: ID!
    name: String!
    books(top: Int!): [Book!]!
}

type Book {
    id: ID!
    title: String!
    reviews(last: Int!): [Review!]!
}

type Review {
    id: ID!
    content: String!
    rating: Int!
}