Open
Description
Describe the bug
In GraphQL Java, JSON Scalar is supported, so I can write the following query:
query {
user(input : {
id : "216ae7d9-cbe7-4d6e-9968-33e3424da0fe",
badges : { Github : "http://example.com" }
}) {
id
email
}
}
But the same code in juniper will throw an error:
ParseError(Spanning { item: UnexpectedToken(CurlyOpen), start: SourcePosition { index: 94, line: 1, col: 83 }, end: SourcePosition { index: 95, line: 1, col: 84 } })
So JSON Object in input is not suppoerted yet?