-
Notifications
You must be signed in to change notification settings - Fork 109
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
Add (multidimensional) enum array typing #535
Conversation
Make EntityField recursive when 'items' is defined to obtain the right type.
thank you. We'll test this out. Michael |
@mobsense Fixed the typing issue, do you want me to create tests for the typing itself? |
Is that possible? |
Added the tests 👍 |
@mobsense Idk if you guys are aware of it. When simply cloning the repo, making some changes and running |
Thank you for the patch. |
Not really sure what you mean. The CI/CD seems to be working fine. When does it not work? |
Context
Assume we have the following schema:
the following Entity type:
and the following code:
Previously
when we check the type of
brands
we're seeing that it has the typestring[]
instead of the typeBrand[]
New
When we check the type of
brands
we'll see that it has typeBrand[]