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
|
from itertools import chain
from typing import Any, NamedTuple, Optional, Union
from graphql import (
graphql_sync,
print_schema,
GraphQLField,
GraphQLID,
GraphQLInt,
GraphQLNonNull,
GraphQLObjectType,
GraphQLResolveInfo,
GraphQLSchema,
GraphQLString,
)
from graphql_relay import node_definitions
from ..utils import dedent
class User(NamedTuple):
id: str
name: str
class Photo(NamedTuple):
id: str
width: int
user_data = [User(id="1", name="John Doe"), User(id="2", name="Jane Smith")]
photo_data = [Photo(id="3", width=300), Photo(id="4", width=400)]
def get_node(id_: str, info: GraphQLResolveInfo) -> Optional[Union[User, Photo]]:
assert info.schema is schema
return next(
filter(
lambda obj: obj.id == id_, # type: ignore
chain(user_data, photo_data),
),
None,
)
def get_node_type(
obj: Union[User, Photo], info: GraphQLResolveInfo, _type: Any
) -> Optional[str]:
assert info.schema is schema
if obj in user_data:
return user_type.name
if obj in photo_data:
return photo_type.name
return None # pragma: no cover
node_interface, node_field, nodes_field = node_definitions(get_node, get_node_type)
user_type = GraphQLObjectType(
"User",
lambda: {
"id": GraphQLField(GraphQLNonNull(GraphQLID)),
"name": GraphQLField(GraphQLString),
},
interfaces=[node_interface],
)
photo_type = GraphQLObjectType(
"Photo",
lambda: {
"id": GraphQLField(GraphQLNonNull(GraphQLID)),
"width": GraphQLField(GraphQLInt),
},
interfaces=[node_interface],
)
query_type = GraphQLObjectType(
"Query", lambda: {"node": node_field, "nodes": nodes_field}
)
schema = GraphQLSchema(query=query_type, types=[node_interface, user_type, photo_type])
def describe_node_interface_and_fields():
def describe_ability_to_refetch():
def gets_the_correct_id_for_users():
source = """
{
node(id: "1") {
id
}
}
"""
assert graphql_sync(schema, source) == ({"node": {"id": "1"}}, None)
def gets_the_correct_name_for_users():
source = """
{
node(id: "1") {
id
... on User {
name
}
}
}
"""
assert graphql_sync(schema, source) == (
{"node": {"id": "1", "name": "John Doe"}},
None,
)
def gets_the_correct_width_for_photos():
source = """
{
node(id: "4") {
id
... on Photo {
width
}
}
}
"""
assert graphql_sync(schema, source) == (
{"node": {"id": "4", "width": 400}},
None,
)
def gets_the_correct_typename_for_users():
source = """
{
node(id: "1") {
id
__typename
}
}
"""
assert graphql_sync(schema, source) == (
{"node": {"id": "1", "__typename": "User"}},
None,
)
def gets_the_correct_typename_for_photos():
source = """
{
node(id: "4") {
id
__typename
}
}
"""
assert graphql_sync(schema, source) == (
{"node": {"id": "4", "__typename": "Photo"}},
None,
)
def ignores_photo_fragments_on_user():
source = """
{
node(id: "1") {
id
... on Photo {
width
}
}
}
"""
assert graphql_sync(schema, source) == ({"node": {"id": "1"}}, None)
def returns_null_for_bad_ids():
source = """
{
node(id: "5") {
id
}
}
"""
assert graphql_sync(schema, source) == ({"node": None}, None)
def returns_nulls_for_bad_ids():
source = """
{
nodes(ids: ["3", "5"]) {
id
}
}
"""
assert graphql_sync(schema, source) == (
{"nodes": [{"id": "3"}, None]},
None,
)
def generates_correct_types():
assert print_schema(schema) == dedent(
'''
"""An object with an ID"""
interface Node {
"""The id of the object."""
id: ID!
}
type User implements Node {
id: ID!
name: String
}
type Photo implements Node {
id: ID!
width: Int
}
type Query {
"""Fetches an object given its ID"""
node(
"""The ID of an object"""
id: ID!
): Node
"""Fetches objects given their IDs"""
nodes(
"""The IDs of objects"""
ids: [ID!]!
): [Node]!
}
'''
)
|