-
Notifications
You must be signed in to change notification settings - Fork 317
Spring for GraphQL 1.2
Rossen Stoyanchev edited this page Jan 23, 2023
·
4 revisions
@Argument Map<String, Object>
no longer returns the full arguments map, and instead now always returns the raw argument value, matching either to the name specified in the annotation, or to the parameter name. For access to the full arguments map, please use @Arguments Map<String, Object>
or DataFetchingEnvironment#getArguments
.