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
|
# generated by datamodel-codegen:
# filename: use-union-operator.graphql
# timestamp: 2019-07-26T00:00:00+00:00
from __future__ import annotations
from typing import List, Literal
from pydantic import BaseModel, Field
from typing_extensions import TypeAlias
Boolean: TypeAlias = bool
"""
The `Boolean` scalar type represents `true` or `false`.
"""
String: TypeAlias = str
"""
The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
"""
class A(BaseModel):
field: String
listField: List[String]
listListField: List[List[String]]
listListOptionalField: List[List[String | None]]
listOptionalField: List[String | None]
listOptionalListField: List[List[String] | None]
listOptionalListOptionalField: List[List[String | None] | None]
optionalField: String | None = None
optionalListListField: List[List[String]] | None = None
optionalListListOptionalField: List[List[String | None]] | None = None
optionalListOptionalField: List[String | None] | None = None
optionalListOptionalListField: List[List[String] | None] | None = None
typename__: Literal['A'] | None = Field('A', alias='__typename')
|