Closed
Description
When you have a scalar with a serialize
function that returns an object, it is not possible to convert it to AST.
So it doesn't allow you to print a schema that has an input value with an object as a default value.
Reproduction -> #4086
Proposed fix -> #4087
const JSONScalar = new GraphQLScalarType({
name: "JSON",
serialize(value) {
return value;
},
});
const schema = new GraphQLSchema({
types: [JSONScalar],
query: new GraphQLObjectType({
name: "Query",
fields: {
test: {
type: GraphQLString,
args: {
i: {
type: JSONScalar,
defaultValue: { object: true },
},
},
},
},
}),
});
Metadata
Metadata
Assignees
Labels
No labels