-
Hi all, I have an enum called ERROR Message: Typescript enum:
I define my enum in nexus like so:
I also tried defining like this:
When I check out my
In my
My
When I run my
As you can see, typescript is sending the implicit enum value of 0 for when I submit with a status of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Sorry, I should have read the GraphQL docs a little more which state that if you pass an Enum through a variable, you should get the string version of it, so in this case I got the string of the enum by:
|
Beta Was this translation helpful? Give feedback.
Sorry, I should have read the GraphQL docs a little more which state that if you pass an Enum through a variable, you should get the string version of it, so in this case I got the string of the enum by:
Status[Status.IN_REVIEW]
, which converts to"IN_REVIEW"
.