-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathschema.graphql
More file actions
87 lines (73 loc) · 1.66 KB
/
Copy pathschema.graphql
File metadata and controls
87 lines (73 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
"""
Directs the executor to defer this fragment when the `if` argument is true or undefined.
"""
directive @defer(
"""Deferred when true or undefined."""
if: Boolean! = true
"""Unique name"""
label: String
) on FRAGMENT_SPREAD | INLINE_FRAGMENT
"""
Directs the executor to stream plural fields when the `if` argument is true or undefined.
"""
directive @stream(
"""Stream when true or undefined."""
if: Boolean! = true
"""Number of items to return immediately"""
initialCount: Int! = 0
"""Unique name"""
label: String
) on FIELD
type Movie implements Node {
audienceScore: Int!
boxOffice: String!
criticScore: Int!
criticsConsensus: String!
id: ID!
imgUrl: String!
likedByViewer: Boolean
reviews(after: String, before: String, first: Int, last: Int): MovieReviewsConnection!
slug: String!
title: String!
}
type MovieReviewsConnection {
edges: [MovieReviewsConnectionEdge!]!
pageInfo: PageInfo!
}
type MovieReviewsConnectionEdge {
cursor: String!
node: Review!
}
type Mutation {
setLikedMovie(id: ID!, liked: Boolean!): Movie!
}
interface Node {
id: ID!
}
type PageInfo {
endCursor: String
hasNextPage: Boolean!
hasPreviousPage: Boolean!
startCursor: String
}
type Query {
movie(slug: String!): Movie!
movies(after: String, before: String, first: Int, last: Int): QueryMoviesConnection!
node(id: ID!): Node
nodes(ids: [ID!]!): [Node]!
}
type QueryMoviesConnection {
edges: [QueryMoviesConnectionEdge!]!
pageInfo: PageInfo!
}
type QueryMoviesConnectionEdge {
cursor: String!
node: Movie!
}
type Review implements Node {
criticName: String!
criticSource: String!
fresh: Boolean!
id: ID!
quote: String!
}