Skip to content
New issue

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

Resolves External Argument Default Mismatch specification doesnt account for all arguments #166

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions spec/Section 4 -- Composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -2737,12 +2737,12 @@ ERROR
- 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 {defaultValues} be 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
{defaultValue}.
- The default value of {externalArgument} must be equal to all
{defaultValues}.

**Explanatory Text**

Expand Down