Skip to content

Commit

Permalink
Fixed parameter order in OutputFieldTypesNotMergeable method (#7837)
Browse files Browse the repository at this point in the history
  • Loading branch information
glen-84 authored Dec 17, 2024
1 parent d747881 commit 84847e8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ public static LogEntry DisallowedInaccessibleDirectiveArgument(
new SchemaCoordinate(directiveName, argumentName: argument.Name, ofDirective: true),
schema: schema);

public static LogEntry OutputFieldTypesNotMergeable(string typeName, string fieldName)
public static LogEntry OutputFieldTypesNotMergeable(string fieldName, string typeName)
=> new(
string.Format(
LogEntryHelper_OutputFieldTypesNotMergeable,
typeName,
fieldName),
fieldName,
typeName),
LogEntryCodes.OutputFieldTypesNotMergeable,
LogSeverity.Error,
new SchemaCoordinate(typeName, fieldName));
Expand Down

0 comments on commit 84847e8

Please sign in to comment.