Hi all, How can I use mutation operation with enum...
# orm-help
c
Hi all, How can I use mutation operation with enum values? I mean I deployed type and enum to prisma server. After that, I tried to seed some data with my seed.graphql file. But server error comes up while I am executing mutation with enum value.
Copy code
createUser(
data: {
  accounts: {
     create: [
         currency: USD *enum value*
         ...
      ]
  }
}
)
It was very stupid question. when I try to delete and deploy one more time, can solve this problem. 🙂