A B C D E F G H I L M N O P Q R S T U V W 
All Classes All Packages

A

arg(String, InputObject) - Static method in interface io.smallrye.graphql.client.core.Argument
 
arg(String, Variable) - Static method in interface io.smallrye.graphql.client.core.Argument
 
arg(String, Object) - Static method in interface io.smallrye.graphql.client.core.Argument
 
args(Argument...) - Static method in interface io.smallrye.graphql.client.core.Argument
 
Argument - Interface in io.smallrye.graphql.client.core
 
AuthorizationHeader - Annotation Type in io.smallrye.graphql.client.typesafe.api
A specialized Header for Authorization.
AuthorizationHeader.Type - Enum in io.smallrye.graphql.client.typesafe.api
 

B

BASIC - io.smallrye.graphql.client.typesafe.api.AuthorizationHeader.Type
The value is "Basic " + base64(username + ":" + password) where username and password are configurations from MP Config, prefixed as defined with AuthorizationHeader.confPrefix().
BEARER - io.smallrye.graphql.client.typesafe.api.AuthorizationHeader.Type
The value is "Bearer " + bearer where bearer is a configurations from MP Config, prefixed as defined with AuthorizationHeader.confPrefix().
build() - Method in interface io.smallrye.graphql.client.core.Buildable
 
build() - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
 
build(Class<T>) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
Build the proxy for that api interface.
Buildable - Interface in io.smallrye.graphql.client.core
 
BuildException - Exception in io.smallrye.graphql.client.core.exceptions
 
BuildException(String) - Constructor for exception io.smallrye.graphql.client.core.exceptions.BuildException
 

C

configKey() - Method in annotation type io.smallrye.graphql.client.typesafe.api.GraphQLClientApi
The base key used to read configuration values.
configKey(String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
 
configKey(String) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
The base key used to read configuration values.
confPrefix() - Method in annotation type io.smallrye.graphql.client.typesafe.api.AuthorizationHeader
The prefix of the config key to be used, plus /mp-graphql/.
constant() - Method in annotation type io.smallrye.graphql.client.typesafe.api.Header
 

D

document(FragmentOrOperation...) - Static method in interface io.smallrye.graphql.client.core.Document
 
Document - Interface in io.smallrye.graphql.client.core
 
DynamicGraphQLClient - Interface in io.smallrye.graphql.client.dynamic.api
 
DynamicGraphQLClientBuilder - Interface in io.smallrye.graphql.client.dynamic.api
 

E

endpoint() - Method in annotation type io.smallrye.graphql.client.typesafe.api.GraphQLClientApi
The URL where the GraphQL service is listening
endpoint(String) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
The URL where the GraphQL service is listening
endpoint(URI) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
The URL where the GraphQL service is listening
Enum - Interface in io.smallrye.graphql.client.core
 
equals(Object) - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
ErrorOr<T> - Class in io.smallrye.graphql.client.typesafe.api
Like an Optional, but if a value is not present, there is a List of GraphQLErrors instead.
executeAsync(Document) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeAsync(Document, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeAsync(Document, Map<String, Object>) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeAsync(Document, Map<String, Object>, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeAsync(Request) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeAsync(String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeAsync(String, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeAsync(String, Map<String, Object>) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeAsync(String, Map<String, Object>, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSingleOperationsOverWebsocket(boolean) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
 
executeSingleOperationsOverWebsocket(boolean) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
If this is true, then queries and mutations will also be executed over a websocket connection rather than over pure HTTP.
executeSync(Document) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSync(Document, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSync(Document, Map<String, Object>) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSync(Document, Map<String, Object>, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSync(Request) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSync(String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSync(String, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSync(String, Map<String, Object>) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
executeSync(String, Map<String, Object>, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 

F

field(String) - Static method in interface io.smallrye.graphql.client.core.Field
 
field(String, Argument...) - Static method in interface io.smallrye.graphql.client.core.Field
 
field(String, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Field
 
field(String, List<Argument>, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Field
 
Field - Interface in io.smallrye.graphql.client.core
 
FieldOrFragment - Interface in io.smallrye.graphql.client.core
Represents one of these nodes in a GraphQL document: - regular field (name), for example "color" - reference to a named fragment, for example "...comparisonFields" - an inline fragment, for example ("...
fields(FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Field
 
flatMap(Function<? super T, ErrorOr<U>>) - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
fragment(String) - Static method in interface io.smallrye.graphql.client.core.Fragment
 
Fragment - Interface in io.smallrye.graphql.client.core
Represents a named fragment definition in a GraphQL document.
Fragment.FragmentBuilder - Class in io.smallrye.graphql.client.core
 
FragmentOrOperation - Interface in io.smallrye.graphql.client.core
Represents a node in a GraphQL document that can contain either an operation (query/mutation/subscription), or a definition of a named fragment.
fragmentRef(Fragment) - Static method in interface io.smallrye.graphql.client.core.FragmentReference
Create a fragment reference by providing a built instance of a named fragment.
fragmentRef(String) - Static method in interface io.smallrye.graphql.client.core.FragmentReference
Create a fragment reference by specifying the name of the target fragment.
FragmentReference - Interface in io.smallrye.graphql.client.core
Represents a reference to a named fragment.
fragments(Fragment...) - Static method in interface io.smallrye.graphql.client.core.Fragment
 
fromString(String) - Static method in enum io.smallrye.graphql.client.websocket.WebsocketSubprotocol
 

G

get() - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
getArguments() - Method in interface io.smallrye.graphql.client.core.Field
 
getChild() - Method in interface io.smallrye.graphql.client.core.VariableType
 
getClassification() - Method in interface io.smallrye.graphql.client.GraphQLError
The general type of failure
getCode() - Method in interface io.smallrye.graphql.client.GraphQLError
A stable error code
getData() - Method in interface io.smallrye.graphql.client.Response
The 'data' object contained in the response.
getDefaultValue() - Method in interface io.smallrye.graphql.client.core.Variable
 
getDescription() - Method in interface io.smallrye.graphql.client.GraphQLError
A human-readable description of the failure
getDocument() - Method in interface io.smallrye.graphql.client.Request
 
getErrors() - Method in exception io.smallrye.graphql.client.GraphQLClientException
 
getErrors() - Method in interface io.smallrye.graphql.client.Response
List of errors contained in this response.
getErrors() - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
getException() - Method in interface io.smallrye.graphql.client.GraphQLError
The name of the exception thrown in the service.
getExtensions() - Method in interface io.smallrye.graphql.client.GraphQLError
Contents of the `extensions` field.
getFields() - Method in interface io.smallrye.graphql.client.core.Field
 
getFields() - Method in interface io.smallrye.graphql.client.core.Fragment
 
getFields() - Method in interface io.smallrye.graphql.client.core.InlineFragment
 
getFields() - Method in interface io.smallrye.graphql.client.core.Operation
 
getInputObjectFields() - Method in interface io.smallrye.graphql.client.core.InputObject
 
getList(Class<T>, String) - Method in interface io.smallrye.graphql.client.Response
Transform the contents of the `rootField` from this response into a list of objects of the requested type.
getLocations() - Method in interface io.smallrye.graphql.client.GraphQLError
List of locations in the request that correspond to this error.
getMessage() - Method in interface io.smallrye.graphql.client.GraphQLError
Textual description of the error, supplied by the service.
getName() - Method in interface io.smallrye.graphql.client.core.Argument
 
getName() - Method in interface io.smallrye.graphql.client.core.Field
 
getName() - Method in interface io.smallrye.graphql.client.core.Fragment
 
getName() - Method in interface io.smallrye.graphql.client.core.FragmentReference
 
getName() - Method in interface io.smallrye.graphql.client.core.InputObjectField
 
getName() - Method in interface io.smallrye.graphql.client.core.Operation
 
getName() - Method in interface io.smallrye.graphql.client.core.Variable
 
getName() - Method in interface io.smallrye.graphql.client.core.VariableType
 
getNewInstanceOf(Class<T>) - Static method in class io.smallrye.graphql.client.core.utils.ServiceUtils
 
getObject(Class<T>, String) - Method in interface io.smallrye.graphql.client.Response
Transform the contents of the `rootField` from this response into an object of the requested type.
getOperations() - Method in interface io.smallrye.graphql.client.core.Document
 
getOtherFields() - Method in interface io.smallrye.graphql.client.GraphQLError
Any other fields beyond message, locations, path and extensions.
getPath() - Method in interface io.smallrye.graphql.client.GraphQLError
The path to the response field where the error arose.
getProtocolId() - Method in enum io.smallrye.graphql.client.websocket.WebsocketSubprotocol
 
getQueryPath() - Method in interface io.smallrye.graphql.client.GraphQLError
The path within the GraphQL query that was rejected
getStringExtension(String) - Method in interface io.smallrye.graphql.client.GraphQLError
Contents of one of the `extensions` fields, converted to a String.
getTargetType() - Method in interface io.smallrye.graphql.client.core.Fragment
 
getTransportMeta() - Method in interface io.smallrye.graphql.client.Response
Get transport-specific metadata that came from the server with this response.
getType() - Method in interface io.smallrye.graphql.client.core.InlineFragment
 
getType() - Method in interface io.smallrye.graphql.client.core.Operation
 
getType() - Method in interface io.smallrye.graphql.client.core.Variable
 
getValidationErrorType() - Method in interface io.smallrye.graphql.client.GraphQLError
The type of mistake leading to the rejection of the GraphQL query
getValue() - Method in interface io.smallrye.graphql.client.core.Argument
 
getValue() - Method in interface io.smallrye.graphql.client.core.Enum
 
getValue() - Method in interface io.smallrye.graphql.client.core.InputObjectField
 
getVariable(String) - Method in interface io.smallrye.graphql.client.Request
 
getVariables() - Method in interface io.smallrye.graphql.client.core.Operation
 
getVariables() - Method in interface io.smallrye.graphql.client.Request
 
GQL_BOOL - io.smallrye.graphql.client.core.ScalarType
 
GQL_FLOAT - io.smallrye.graphql.client.core.ScalarType
 
GQL_ID - io.smallrye.graphql.client.core.ScalarType
 
GQL_INT - io.smallrye.graphql.client.core.ScalarType
 
GQL_STRING - io.smallrye.graphql.client.core.ScalarType
 
gqlEnum(String) - Static method in interface io.smallrye.graphql.client.core.Enum
 
GRAPHQL_TRANSPORT_WS - io.smallrye.graphql.client.websocket.WebsocketSubprotocol
 
GRAPHQL_WS - io.smallrye.graphql.client.websocket.WebsocketSubprotocol
 
GraphQLClient - Annotation Type in io.smallrye.graphql.client
Marks an injection point that should receive a named GraphQL client instance.
GraphQLClientApi - Annotation Type in io.smallrye.graphql.client.typesafe.api
Annotate your GraphQL Client interface as GraphQLClientApi, so CDI can build and inject it for you.
GraphQLClientException - Exception in io.smallrye.graphql.client
Represents a response that contained application-level errors and thus can't be turned into a domain object.
GraphQLClientException(String, GraphQLError) - Constructor for exception io.smallrye.graphql.client.GraphQLClientException
 
GraphQLClientException(String, List<GraphQLError>) - Constructor for exception io.smallrye.graphql.client.GraphQLClientException
 
GraphQLError - Interface in io.smallrye.graphql.client
 

H

handle(Consumer<? super T>, Consumer<List<GraphQLError>>) - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
hasData() - Method in interface io.smallrye.graphql.client.Response
If this response contains any data, this returns `true`; `false` otherwise.
hasError() - Method in interface io.smallrye.graphql.client.Response
If this response contains at least one error, this returns `true`; `false` otherwise.
hasErrors() - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
hashCode() - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
header(String, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
 
header(String, String) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
Static header to send with all methods in this client.
Header - Annotation Type in io.smallrye.graphql.client.typesafe.api
Adds a custom header to the http requests sent out by the GraphQL Client.
headers(Map<String, String>) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
Static headers to send with all methods in this client.
Headers - Annotation Type in io.smallrye.graphql.client.typesafe.api
 

I

ifPresent(Consumer<? super T>) - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
InlineFragment - Interface in io.smallrye.graphql.client.core
Represents an inline fragment in a GraphQL document.
inputObject(InputObjectField...) - Static method in interface io.smallrye.graphql.client.core.InputObject
 
InputObject - Interface in io.smallrye.graphql.client.core
 
InputObjectField - Interface in io.smallrye.graphql.client.core
 
InvalidResponseException - Exception in io.smallrye.graphql.client
Marks a response that had unexpected contents and the client was unable to properly process it.
InvalidResponseException(String) - Constructor for exception io.smallrye.graphql.client.InvalidResponseException
 
InvalidResponseException(String, Throwable) - Constructor for exception io.smallrye.graphql.client.InvalidResponseException
 
io.smallrye.graphql.client - package io.smallrye.graphql.client
 
io.smallrye.graphql.client.core - package io.smallrye.graphql.client.core
 
io.smallrye.graphql.client.core.exceptions - package io.smallrye.graphql.client.core.exceptions
 
io.smallrye.graphql.client.core.utils - package io.smallrye.graphql.client.core.utils
 
io.smallrye.graphql.client.dynamic.api - package io.smallrye.graphql.client.dynamic.api
 
io.smallrye.graphql.client.typesafe.api - package io.smallrye.graphql.client.typesafe.api
 
io.smallrye.graphql.client.websocket - package io.smallrye.graphql.client.websocket
 
isList() - Method in interface io.smallrye.graphql.client.core.VariableType
 
isNonNull() - Method in interface io.smallrye.graphql.client.core.VariableType
 
isPresent() - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 

L

list(ScalarType) - Static method in interface io.smallrye.graphql.client.core.VariableType
 
list(VariableType) - Static method in interface io.smallrye.graphql.client.core.VariableType
 
list(String) - Static method in interface io.smallrye.graphql.client.core.VariableType
 

M

map(Function<? super T, ? extends U>) - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
method() - Method in annotation type io.smallrye.graphql.client.typesafe.api.Header
 
Multiple - Annotation Type in io.smallrye.graphql.client.typesafe.api
'Hide' or 'unwrap' the return type of the annotated method from GraphQL, i.e.
MUTATION - io.smallrye.graphql.client.core.OperationType
 

N

name() - Method in annotation type io.smallrye.graphql.client.typesafe.api.Header
 
NestedParameter - Annotation Type in io.smallrye.graphql.client.typesafe.api
Places a parameter not on the query field but some field deeper in the request, e.g.
newBuilder() - Static method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
 
newBuilder() - Static method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
 
nonNull(ScalarType) - Static method in interface io.smallrye.graphql.client.core.VariableType
 
nonNull(VariableType) - Static method in interface io.smallrye.graphql.client.core.VariableType
 
nonNull(String) - Static method in interface io.smallrye.graphql.client.core.VariableType
 

O

of(T) - Static method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
ofErrors(List<GraphQLError>) - Static method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
on(String, FieldOrFragment...) - Method in class io.smallrye.graphql.client.core.Fragment.FragmentBuilder
 
on(String, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.InlineFragment
 
operation(FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
operation(OperationType, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
operation(OperationType, String, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
operation(OperationType, String, List<Variable>, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
operation(OperationType, List<Variable>, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
operation(String, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
operation(String, List<Variable>, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
operation(List<Variable>, FieldOrFragment...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
Operation - Interface in io.smallrye.graphql.client.core
 
operations(Operation...) - Static method in interface io.smallrye.graphql.client.core.Operation
 
OperationType - Enum in io.smallrye.graphql.client.core
 
optional() - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 

P

prop(String, Variable) - Static method in interface io.smallrye.graphql.client.core.InputObjectField
 
prop(String, Object) - Static method in interface io.smallrye.graphql.client.core.InputObjectField
 

Q

QUERY - io.smallrye.graphql.client.core.OperationType
 

R

Request - Interface in io.smallrye.graphql.client
 
resetVariables() - Method in interface io.smallrye.graphql.client.Request
 
Response - Interface in io.smallrye.graphql.client
 

S

ScalarType - Enum in io.smallrye.graphql.client.core
 
ServiceUtils - Class in io.smallrye.graphql.client.core.utils
 
setArguments(List<Argument>) - Method in interface io.smallrye.graphql.client.core.Field
 
setChild(VariableType) - Method in interface io.smallrye.graphql.client.core.VariableType
 
setDefaultValue(Optional<Object>) - Method in interface io.smallrye.graphql.client.core.Variable
 
setFields(List<FieldOrFragment>) - Method in interface io.smallrye.graphql.client.core.Field
 
setFields(List<FieldOrFragment>) - Method in interface io.smallrye.graphql.client.core.Fragment
 
setFields(List<FieldOrFragment>) - Method in interface io.smallrye.graphql.client.core.InlineFragment
 
setFields(List<FieldOrFragment>) - Method in interface io.smallrye.graphql.client.core.Operation
 
setInputObjectFields(List<InputObjectField>) - Method in interface io.smallrye.graphql.client.core.InputObject
 
setName(String) - Method in interface io.smallrye.graphql.client.core.Argument
 
setName(String) - Method in interface io.smallrye.graphql.client.core.Field
 
setName(String) - Method in interface io.smallrye.graphql.client.core.Fragment
 
setName(String) - Method in interface io.smallrye.graphql.client.core.FragmentReference
 
setName(String) - Method in interface io.smallrye.graphql.client.core.InputObjectField
 
setName(String) - Method in interface io.smallrye.graphql.client.core.Operation
 
setName(String) - Method in interface io.smallrye.graphql.client.core.Variable
 
setName(String) - Method in interface io.smallrye.graphql.client.core.VariableType
 
setNonNull(boolean) - Method in interface io.smallrye.graphql.client.core.VariableType
 
setOperations(List<FragmentOrOperation>) - Method in interface io.smallrye.graphql.client.core.Document
 
setTargetType(String) - Method in interface io.smallrye.graphql.client.core.Fragment
 
setType(OperationType) - Method in interface io.smallrye.graphql.client.core.Operation
 
setType(VariableType) - Method in interface io.smallrye.graphql.client.core.Variable
 
setType(String) - Method in interface io.smallrye.graphql.client.core.InlineFragment
 
setValue(Object) - Method in interface io.smallrye.graphql.client.core.Argument
 
setValue(Object) - Method in interface io.smallrye.graphql.client.core.InputObjectField
 
setValue(String) - Method in interface io.smallrye.graphql.client.core.Enum
 
setVariable(String, Object) - Method in interface io.smallrye.graphql.client.Request
 
setVariables(List<Variable>) - Method in interface io.smallrye.graphql.client.core.Operation
 
setVariables(Map<String, Object>) - Method in interface io.smallrye.graphql.client.Request
 
stream() - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
subprotocols(WebsocketSubprotocol...) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
 
subprotocols(WebsocketSubprotocol...) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
 
subscription(Document) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
subscription(Document, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
subscription(Document, Map<String, Object>) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
subscription(Document, Map<String, Object>, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
subscription(Request) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
subscription(String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
subscription(String, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
subscription(String, Map<String, Object>) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
subscription(String, Map<String, Object>, String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClient
 
SUBSCRIPTION - io.smallrye.graphql.client.core.OperationType
 

T

toJson() - Method in interface io.smallrye.graphql.client.Request
 
toJsonObject() - Method in interface io.smallrye.graphql.client.Request
 
toString() - Method in enum io.smallrye.graphql.client.core.ScalarType
 
toString() - Method in exception io.smallrye.graphql.client.GraphQLClientException
 
toString() - Method in class io.smallrye.graphql.client.typesafe.api.ErrorOr
 
type() - Method in annotation type io.smallrye.graphql.client.typesafe.api.AuthorizationHeader
The first word of the Authorization header value, i.e.
TypesafeGraphQLClientBuilder - Interface in io.smallrye.graphql.client.typesafe.api
Use this builder, when you are not in a CDI context, i.e.

U

url(String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
 

V

value() - Method in annotation type io.smallrye.graphql.client.GraphQLClient
 
value() - Method in annotation type io.smallrye.graphql.client.typesafe.api.Headers
 
value() - Method in annotation type io.smallrye.graphql.client.typesafe.api.NestedParameter
 
valueOf(String) - Static method in enum io.smallrye.graphql.client.core.OperationType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum io.smallrye.graphql.client.core.ScalarType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum io.smallrye.graphql.client.typesafe.api.AuthorizationHeader.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum io.smallrye.graphql.client.websocket.WebsocketSubprotocol
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.smallrye.graphql.client.core.OperationType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum io.smallrye.graphql.client.core.ScalarType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum io.smallrye.graphql.client.typesafe.api.AuthorizationHeader.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum io.smallrye.graphql.client.websocket.WebsocketSubprotocol
Returns an array containing the constants of this enum type, in the order they are declared.
var(String, ScalarType) - Static method in interface io.smallrye.graphql.client.core.Variable
 
var(String, ScalarType, Object) - Static method in interface io.smallrye.graphql.client.core.Variable
 
var(String, VariableType) - Static method in interface io.smallrye.graphql.client.core.Variable
 
var(String, VariableType, Object) - Static method in interface io.smallrye.graphql.client.core.Variable
 
var(String, String) - Static method in interface io.smallrye.graphql.client.core.Variable
 
var(String, String, Object) - Static method in interface io.smallrye.graphql.client.core.Variable
 
Variable - Interface in io.smallrye.graphql.client.core
 
VariableType - Interface in io.smallrye.graphql.client.core
 
vars(Variable...) - Static method in interface io.smallrye.graphql.client.core.Variable
 
varType(ScalarType) - Static method in interface io.smallrye.graphql.client.core.VariableType
 
varType(String) - Static method in interface io.smallrye.graphql.client.core.VariableType
 

W

websocketInitializationTimeout(Integer) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
Maximum time (in milliseconds) allowed between initializing a subscription websocket and receiving a subscription start acknowledgement from the server.
websocketInitializationTimeout(Integer) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
Maximum time (in milliseconds) allowed between initializing a subscription websocket and receiving a subscription start acknowledgement from the server.
WebsocketSubprotocol - Enum in io.smallrye.graphql.client.websocket
 
websocketUrl(String) - Method in interface io.smallrye.graphql.client.dynamic.api.DynamicGraphQLClientBuilder
 
websocketUrl(String) - Method in interface io.smallrye.graphql.client.typesafe.api.TypesafeGraphQLClientBuilder
Path to the websocket endpoint.
A B C D E F G H I L M N O P Q R S T U V W 
All Classes All Packages