-
Notifications
You must be signed in to change notification settings - Fork 227
ChoiceType column doesn't result in a field #199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Actually, this seems to be an issue with |
Now it's getting really weird. >>> isinstance(Enum('Foo', [('X', 1)]), UnmountedType)
False
>>> isinstance(Int(), UnmountedType)
True
>>> isinstance(Enum('Foo', [('X', 1)])(), UnmountedType)
True |
OK I created an issue with |
Didn't mean to close 😄 (as there might be consequences that affect this library from the outcome of the other issue) |
is there another thread with a resolution? |
Issue can't be reproduced on |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related topics referencing this issue. |
Given
I'm missing "foo" from the generated schema.
I believe this is due to the fact that
convert_column_to_enum
is returning an instance ofgraphene.Enum
, which isn't aMountedScalar
or aField
(noticeconvert_enum_to_enum
returns aField
)The text was updated successfully, but these errors were encountered: