-
I have the following setup:
I want to ensure that you can't submit a Some guidance would be much appreciated |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
GraphQL enums are like C-style enums without inner type, so what you are looking for are GraphQL unions. Unfortunately as of now GraphQL doesn't support unions as input types. So for now you have to validate your input objects manually. |
Beta Was this translation helpful? Give feedback.
GraphQL enums are like C-style enums without inner type, so what you are looking for are GraphQL unions. Unfortunately as of now GraphQL doesn't support unions as input types. So for now you have to validate your input objects manually.