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
|
from dataclasses import dataclass
from typing import Optional, TypeVar
from graphql import print_schema
from apischema.graphql import graphql_schema, relay, resolver
Cursor = int
Node = TypeVar("Node")
Edge = TypeVar("Edge", bound=relay.Edge)
@dataclass
class MyConnection(relay.Connection[Node, Cursor, Edge]):
connection_field: bool
@dataclass
class MyEdge(relay.Edge[Node, Cursor]):
edge_field: int | None
Connection = MyConnection[Node, MyEdge[Node]]
@dataclass
class Ship:
name: str
@dataclass
class Faction:
@resolver
def ships(
self, first: int | None, after: Cursor | None
) -> Connection[Optional[Ship]] | None:
...
def faction() -> Faction | None:
return Faction()
schema = graphql_schema(query=[faction])
schema_str = """\
type Query {
faction: Faction
}
type Faction {
ships(first: Int, after: Int): ShipConnection
}
type ShipConnection {
edges: [ShipEdge]
pageInfo: PageInfo!
connectionField: Boolean!
}
type ShipEdge {
node: Ship
cursor: Int!
edgeField: Int
}
type Ship {
name: String!
}
type PageInfo {
hasPreviousPage: Boolean!
hasNextPage: Boolean!
startCursor: Int
endCursor: Int
}"""
assert print_schema(schema) == schema_str
|