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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
import asyncio
from typing import cast
from graphql import (
GraphQLArgument,
GraphQLEnumType,
GraphQLEnumValue,
GraphQLField,
GraphQLInputField,
GraphQLInputObjectType,
GraphQLInt,
GraphQLInterfaceType,
GraphQLList,
GraphQLNonNull,
GraphQLObjectType,
GraphQLSchema,
GraphQLString,
IntrospectionQuery,
get_introspection_query,
graphql_sync,
print_schema,
)
from .fixtures import (
create_review,
get_characters,
get_droid,
get_friends,
get_hero_async,
get_human,
reviews,
)
episode_enum = GraphQLEnumType(
"Episode",
{
"NEWHOPE": GraphQLEnumValue(
4,
description="Released in 1977.",
),
"EMPIRE": GraphQLEnumValue(
5,
description="Released in 1980.",
),
"JEDI": GraphQLEnumValue(
6,
description="Released in 1983.",
),
},
description="One of the films in the Star Wars Trilogy",
)
human_type: GraphQLObjectType
droid_type: GraphQLObjectType
character_interface = GraphQLInterfaceType(
"Character",
lambda: {
"id": GraphQLField(
GraphQLNonNull(GraphQLString), description="The id of the character."
),
"name": GraphQLField(GraphQLString, description="The name of the character."),
"friends": GraphQLField(
GraphQLList(character_interface), # type: ignore
description="The friends of the character,"
" or an empty list if they have none.",
),
"appearsIn": GraphQLField(
GraphQLList(episode_enum), description="Which movies they appear in."
),
},
resolve_type=lambda character, _info, _type: {
"Human": human_type.name,
"Droid": droid_type.name,
}[character.type],
description="A character in the Star Wars Trilogy",
)
human_type = GraphQLObjectType(
"Human",
lambda: {
"id": GraphQLField(
GraphQLNonNull(GraphQLString),
description="The id of the human.",
),
"name": GraphQLField(
GraphQLString,
description="The name of the human.",
),
"friends": GraphQLField(
GraphQLList(character_interface),
description="The friends of the human, or an empty list if they have none.",
resolve=lambda human, _info: get_friends(human),
),
"appearsIn": GraphQLField(
GraphQLList(episode_enum),
description="Which movies they appear in.",
),
"homePlanet": GraphQLField(
GraphQLString,
description="The home planet of the human, or null if unknown.",
),
},
interfaces=[character_interface],
description="A humanoid creature in the Star Wars universe.",
)
droid_type = GraphQLObjectType(
"Droid",
lambda: {
"id": GraphQLField(
GraphQLNonNull(GraphQLString),
description="The id of the droid.",
),
"name": GraphQLField(
GraphQLString,
description="The name of the droid.",
),
"friends": GraphQLField(
GraphQLList(character_interface),
description="The friends of the droid, or an empty list if they have none.",
resolve=lambda droid, _info: get_friends(droid),
),
"appearsIn": GraphQLField(
GraphQLList(episode_enum),
description="Which movies they appear in.",
),
"primaryFunction": GraphQLField(
GraphQLString,
description="The primary function of the droid.",
),
},
interfaces=[character_interface],
description="A mechanical creature in the Star Wars universe.",
)
review_type = GraphQLObjectType(
"Review",
lambda: {
"episode": GraphQLField(episode_enum, description="The movie"),
"stars": GraphQLField(
GraphQLNonNull(GraphQLInt),
description="The number of stars this review gave, 1-5",
),
"commentary": GraphQLField(
GraphQLString, description="Comment about the movie"
),
},
description="Represents a review for a movie",
)
review_input_type = GraphQLInputObjectType(
"ReviewInput",
lambda: {
"stars": GraphQLInputField(GraphQLInt, description="0-5 stars"),
"commentary": GraphQLInputField(
GraphQLString, description="Comment about the movie, optional"
),
"deprecated_input_field": GraphQLInputField(
GraphQLString,
description="deprecated field example",
deprecation_reason="deprecated for testing",
),
},
description="The input object sent when someone is creating a new review",
)
query_type = GraphQLObjectType(
"Query",
lambda: {
"hero": GraphQLField(
character_interface,
args={
"episode": GraphQLArgument(
episode_enum,
description="If omitted, returns the hero of the whole saga. If "
"provided, returns the hero of that particular episode.",
)
},
resolve=lambda _source, _info, episode=None: get_hero_async(episode),
),
"human": GraphQLField(
human_type,
args={
"id": GraphQLArgument(
description="id of the human",
type_=GraphQLNonNull(GraphQLString),
)
},
resolve=lambda _source, _info, id: get_human(id),
),
"droid": GraphQLField(
droid_type,
args={
"id": GraphQLArgument(
description="id of the droid",
type_=GraphQLNonNull(GraphQLString),
)
},
resolve=lambda _source, _info, id: get_droid(id),
),
"characters": GraphQLField(
GraphQLList(character_interface),
args={
"ids": GraphQLArgument(
GraphQLList(GraphQLString),
description="list of character ids",
)
},
resolve=lambda _source, _info, ids=None: get_characters(ids),
),
},
)
mutation_type = GraphQLObjectType(
"Mutation",
lambda: {
"createReview": GraphQLField(
review_type,
args={
"episode": GraphQLArgument(
episode_enum,
description="Episode to create review",
),
"review": GraphQLArgument(
description="set alive status",
type_=review_input_type,
),
},
resolve=lambda _source, _info, episode=None, review=None: create_review(
episode, review
),
),
},
description="The mutation type, represents all updates we can make to our data",
)
async def subscribe_reviews(_root, _info, episode):
for review in reviews[episode]:
yield review
await asyncio.sleep(0.1)
async def resolve_review(review, _info, **_args):
return review
subscription_type = GraphQLObjectType(
"Subscription",
lambda: {
"reviewAdded": GraphQLField(
review_type,
args={
"episode": GraphQLArgument(
episode_enum,
description="Episode to review",
)
},
subscribe=subscribe_reviews,
resolve=resolve_review,
)
},
)
StarWarsSchema = GraphQLSchema(
query=query_type,
mutation=mutation_type,
subscription=subscription_type,
types=[human_type, droid_type, review_type, review_input_type],
)
StarWarsIntrospection = cast(
IntrospectionQuery, graphql_sync(StarWarsSchema, get_introspection_query()).data
)
StarWarsTypeDef = print_schema(StarWarsSchema)
|