File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -2924,26 +2924,31 @@ class Int(Scalar):
29242924
29252925class Float (Scalar ):
29262926 'Maps GraphQL ``Float`` to Python ``float``.'
2927+
29272928 converter = float
29282929
29292930
29302931class String (Scalar ):
29312932 'Maps GraphQL ``String`` to Python ``str``.'
2933+
29322934 converter = str
29332935
29342936
29352937class Boolean (Scalar ):
29362938 'Maps GraphQL ``Boolean`` to Python ``bool``.'
2939+
29372940 converter = bool
29382941
29392942
29402943class ID (Scalar ):
29412944 'Maps GraphQL ``ID`` to Python ``str``.'
2945+
29422946 converter = str
29432947
29442948
29452949class UnknownType (Type ):
29462950 'Type found in the response that was not present in schema'
2951+
29472952 __auto_register = False # do not expose this in Schema, just subclasses
29482953
29492954
You can’t perform that action at this time.
0 commit comments