File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
- from collections import defaultdict , OrderedDict
1
+ from collections import OrderedDict , defaultdict
2
2
from enum import Enum
3
3
from functools import partial
4
4
from graphql .core .type import (
@@ -63,13 +63,13 @@ def __init__(self):
63
63
self ._registered_types_can_be = defaultdict (set )
64
64
self ._pending_types_can_be = defaultdict (set )
65
65
self ._proxy = ResolvedRegistryProxy (self )
66
+ self ._mutations = {}
66
67
self .ObjectType = self ._create_object_type_class ()
67
68
self .InputType = self ._create_input_type_class ()
68
69
self .Implements = ClassTypeCreator (self , self ._create_object_type_class )
69
70
self .Union = ClassTypeCreator (self , self ._create_union_type_class )
70
71
self .Interface = self ._create_interface_type_class ()
71
72
self .Mutation = self ._create_mutation_type_class ()
72
- self ._mutations = {}
73
73
74
74
for type in builtin_scalars :
75
75
self .Register (type )
You can’t perform that action at this time.
0 commit comments