Special Characters in ApolloStack GraphQL enum Types

I posted this in github but no answers.

I cannot create a enum schema with forward slash ("/").

i.e. the following does not work:

  enum Test {
    ABC
    Dog
    Dog/Cat
  }