I am trying to get a Scala Map[String, Seq[String]]
to a MapType
in GraphQL Sangria. I think the way could be using:
ScalarType[Map[String, Seq[String]]]
I am trying to get a Scala Map[String, Seq[String]]
to a MapType
in GraphQL Sangria. I think the way could be using:
ScalarType[Map[String, Seq[String]]]
Copyright © 2021 Jogjafile Inc.
Unfortunately, at the moment a generic
Map
is not supported by the GraphQL spec. There are several alternatives available though. I would suggest you to check out this on-going discussion:https://github.com/facebook/graphql/issues/101
Also, it is possible to implement a raw JSON scalar type, but in general I would discourage you from using it.