Unfortunately, GraphQL enums do not support the use of dashes and only accept underscores.
In my current situation, I have enums that include dashes. These enums are already established and changing them would likely cause issues in areas that are difficult to monitor.
Given this limitation, how can I represent these enums in GraphQL?
Is there a way to create a "pseudo" enum that aligns with GraphQL requirements and then translate it into actual values later on?
Alternatively, should I simply develop my own Scalar type and forego recommendations from GraphIQL?