We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ValidateDefaultValue
ValidateDefaultValue(defaultValue): If {defaultValue} is a ListValue: For each {valueNode} in {defaultValue}: If {ValidateDefaultValue(valueNode)} is false return false If {defaultValue} is an ObjectValue: Let {objectFields} be a list of all fields of {defaultValue} Let {fields} be a list of all fields {objectFields} are referring to For each {field} in {fields}: If {IsExposed(field)} is false return false For each {objectField} in {objectFields}: Let {value} be the value of {objectField} return {ValidateDefaultValue(value)} If {defaultValue} is an EnumValue: If {IsExposed(defaultValue)} is false return false return true
ValidateDefaultValue(defaultValue):
Align objectFields/fields language with https://spec.graphql.org/draft/#sec-Input-Object-Required-Fields.
objectFields
fields
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Align
objectFields
/fields
language with https://spec.graphql.org/draft/#sec-Input-Object-Required-Fields.The text was updated successfully, but these errors were encountered: