Skip to content

Commit c0bc613

Browse files
leebyronyaacovCR
authored andcommittedOct 15, 2024
RFC: Default value validation & coercion
Implements graphql/graphql-spec#793 * Adds validation of default values during schema validation. * Adds coercion of default values anywhere a default value is used at runtime Potentially breaking: * Deprecates `astFromValue` * Changes type of `defaultValue` provided during type configuration from an "internal" to an "external" value.
1 parent 9c4f15a commit c0bc613

13 files changed

+900
-37
lines changed
 

‎cspell.yml

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ ignoreRegExpList:
3434

3535
words:
3636
- graphiql
37+
- uncoerce
38+
- uncoerced
3739

3840
# Different names used inside tests
3941
- Skywalker

‎src/execution/__tests__/variables-test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ const TestType = new GraphQLObjectType({
150150
}),
151151
fieldWithNestedInputObject: fieldWithInputArg({
152152
type: TestNestedInputObject,
153-
defaultValue: 'Hello World',
154153
}),
155154
list: fieldWithInputArg({ type: new GraphQLList(GraphQLString) }),
156155
nested: {

‎src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ export {
441441
// Create a JavaScript value from a GraphQL language AST without a Type.
442442
valueFromASTUntyped,
443443
// Create a GraphQL language AST from a JavaScript value.
444+
/** @deprecated use `valueToLiteral()` instead with care to operate on external values - `astFromValue()` will be removed in v18 */
444445
astFromValue,
445446
// A helper to use within recursive-descent visitors which need to be aware of the GraphQL type system.
446447
TypeInfo,

‎src/type/__tests__/enumType-test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,7 @@ const QueryType = new GraphQLObjectType({
7171
args: {
7272
fromEnum: {
7373
type: ComplexEnum,
74-
// Note: defaultValue is provided an *internal* representation for
75-
// Enums, rather than the string name.
76-
defaultValue: Complex1,
74+
defaultValue: 'ONE',
7775
},
7876
provideGoodValue: { type: GraphQLBoolean },
7977
provideBadValue: { type: GraphQLBoolean },

0 commit comments

Comments
 (0)