Skip to content

Commit feacfd3

Browse files
committed
Remove AbstractType
1 parent e90aa1b commit feacfd3

File tree

6 files changed

+0
-102
lines changed

6 files changed

+0
-102
lines changed

docs/types/abstracttypes.rst

-43
This file was deleted.

docs/types/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ Types Reference
1515
interfaces
1616
unions
1717
mutations
18-
abstracttypes

graphene/__init__.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from .pyutils.version import get_version
22

33
from .types import (
4-
AbstractType,
54
ObjectType,
65
InputObjectType,
76
Interface,
@@ -86,6 +85,4 @@
8685
"lazy_import",
8786
"Context",
8887
"ResolveInfo",
89-
# Deprecated
90-
"AbstractType",
9188
]

graphene/types/__init__.py

-5
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
from .union import Union
2121
from .context import Context
2222

23-
# Deprecated
24-
from .abstracttype import AbstractType
25-
2623

2724
__all__ = [
2825
"ObjectType",
@@ -52,6 +49,4 @@
5249
"Union",
5350
"Context",
5451
"ResolveInfo",
55-
# Deprecated
56-
"AbstractType",
5752
]

graphene/types/abstracttype.py

-11
This file was deleted.

graphene/types/tests/test_abstracttype.py

-39
This file was deleted.

0 commit comments

Comments
 (0)