In the examples folder the input object example use the following import statement which is not compiling:
-- this fails with Module ‘GraphQL.Value’ does not export ‘toValue’
import GraphQL.Value (FromValue, toValue)
-- this is working though :
import GraphQL.Value.ToValue (toValue)
import GraphQL.Value.FromValue (FromValue)
Any idea what's going on ?