You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Let {argumentNames} be the set of all argument names from all fields in
{fields}.
- For each {argumentName} in {argumentNames}
- Let {arguments} be the set of all arguments with the name
{argumentName} from all fields in {fields}.
- Let {defaultValue} be the first default value found in {arguments}.
- Let {externalArguments} be the set of all arguments with the name
{argumentName} from all fields in {externalFields}.
- For each {externalArgument} in {externalArguments}
- The default value of {externalArgument} must be equal to
{defaultValue}.
defaultValue does not specify that it comes from the non-external argument. Therefore iterating over the external arguments prior to doing the check against defaultValue may result in the non-external argument never being accounted for.
The text was updated successfully, but these errors were encountered:
- Let {argumentNames} be the set of all argument names from all fields in
{fields}.
- For each {argumentName} in {argumentNames}
- Let {arguments} be the set of all arguments with the name
{argumentName} from all fields in {fields}.
- Let {defaultValues} be the all default values found in {arguments}.
- Let {externalArguments} be the set of all arguments with the name
{argumentName} from all fields in {externalFields}.
- For each {externalArgument} in {externalArguments}
- The default value of {externalArgument} must be equal to all
{defaultValues}.
In:
defaultValue
does not specify that it comes from the non-external argument. Therefore iterating over the external arguments prior to doing the check againstdefaultValue
may result in the non-external argument never being accounted for.The text was updated successfully, but these errors were encountered: