- getArgument(String) - Method in interface io.smallrye.graphql.api.Context
-
Get the argument using a name
This return the argument instance if it exists
- getArgumentOrDefault(String, T) - Method in interface io.smallrye.graphql.api.Context
-
Same as above but with the option to do a default value
- getArguments() - Method in interface io.smallrye.graphql.api.Context
-
Get all the arguments
- getExecutionId() - Method in interface io.smallrye.graphql.api.Context
-
Get the execution ID.
- getFieldName() - Method in interface io.smallrye.graphql.api.Context
-
Get the field name
- getOperationName() - Method in interface io.smallrye.graphql.api.Context
-
Get the operationName of the request.
- getOperationType() - Method in interface io.smallrye.graphql.api.Context
-
Return the current type (Query, Mutation ext)
Current type means the type currently being executed.
- getParentTypeName() - Method in interface io.smallrye.graphql.api.Context
-
Return the type name of the parent (if any)
- getPath() - Method in interface io.smallrye.graphql.api.Context
-
Return the current path
- getQuery() - Method in interface io.smallrye.graphql.api.Context
-
Get the query part of the request.
- getRequest() - Method in interface io.smallrye.graphql.api.Context
-
Get the full body of the request.
- getRequestedOperationTypes() - Method in interface io.smallrye.graphql.api.Context
-
Return all the operation types requested (unique list)
A Request can contain more than one operation.
- getSelectedFields() - Method in interface io.smallrye.graphql.api.Context
-
Return the fields selected in the request
- getSelectedFields(boolean) - Method in interface io.smallrye.graphql.api.Context
-
Return the fields in the request
- getSource() - Method in interface io.smallrye.graphql.api.Context
-
- getVariables() - Method in interface io.smallrye.graphql.api.Context
-
Get the variables of the request
Could be null (not set)