How to get a Scala Map[String, Seq[String]] to a MapType in GraphQL Sangria

758 Views Asked by At

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]]]
1

There are 1 best solutions below

0
On

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.