File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -785,9 +785,9 @@ export interface GraphQLScalarTypeConfig<TInternal, TExternal> {
785
785
/** Parses an externally provided literal value to use as an input. */
786
786
/** @deprecated use `replaceVariables()` and `coerceInputLiteral()` instead, `parseLiteral()` will be removed in v18 */
787
787
parseLiteral ?: GraphQLScalarLiteralParser < TInternal > | undefined ;
788
- /** Coerces an externally provided value to use as an input. */
789
- coerceOutputValue ?: GraphQLScalarOutputValueCoercer < TExternal > | undefined ;
790
788
/** Coerces an internal value to include in a response. */
789
+ coerceOutputValue ?: GraphQLScalarOutputValueCoercer < TExternal > | undefined ;
790
+ /** Coerces an externally provided value to use as an input. */
791
791
coerceInputValue ?: GraphQLScalarInputValueCoercer < TInternal > | undefined ;
792
792
/** Coerces an externally provided const literal value to use as an input. */
793
793
coerceInputLiteral ?: GraphQLScalarInputLiteralCoercer < TInternal > | undefined ;
You can’t perform that action at this time.
0 commit comments