Skip to content

Commit

Permalink
Update generated doc files
Browse files Browse the repository at this point in the history
  • Loading branch information
captbaritone committed May 4, 2024
1 parent ae2a667 commit 7b79e7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website/docs/03-resolvers/snippets/04-renaming-field.out
Expand Up @@ -25,7 +25,7 @@ export function getSchema(): GraphQLSchema {
name: "greeting",
type: GraphQLString,
resolve(source, args, context, info) {
return source.getGreeting(source, args, context, info);
return source.getGreeting(args, context, info);
}
}
};
Expand Down
Expand Up @@ -28,7 +28,7 @@ export function getSchema(): GraphQLSchema {
name: "name",
type: GraphQLString,
resolve(source, args, context, info) {
return source.graphQLName(source, args, context, info);
return source.graphQLName(args, context, info);
}
}
};
Expand Down

0 comments on commit 7b79e7c

Please sign in to comment.