-
-
Notifications
You must be signed in to change notification settings - Fork 435
Expand file tree
/
Copy pathadditional_imports.py
More file actions
36 lines (22 loc) · 1.01 KB
/
additional_imports.py
File metadata and controls
36 lines (22 loc) · 1.01 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
# generated by datamodel-codegen:
# filename: additional-imports.graphql
# timestamp: 2019-07-26T00:00:00+00:00
from __future__ import annotations
from datetime import date, datetime
from typing import Literal
from mymodule.myclass import MyCustomPythonClass
from pydantic import BaseModel, Field
from typing_extensions import TypeAliasType
Boolean = TypeAliasType("Boolean", bool)
"""The `Boolean` scalar type represents `true` or `false`."""
Date = TypeAliasType("Date", date)
DateTime = TypeAliasType("DateTime", datetime)
"""DateTime (ISO8601, example: 2020-01-01T10:11:12+00:00)"""
MyCustomClass = TypeAliasType("MyCustomClass", MyCustomPythonClass)
String = TypeAliasType("String", 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):
a: Date
b: DateTime
c: MyCustomClass
typename__: Literal['A'] | None = Field('A', alias='__typename')