Inputting an enum
#1112
|
I have the following setup: I want to ensure that you can't submit a Some guidance would be much appreciated |
Answered by
ilslv
Oct 14, 2022
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. |
0 replies
Answer selected by
ilslv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to 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.