Package io.smallrye.graphql.client.typesafe.api


package io.smallrye.graphql.client.typesafe.api
  • Class
    Description
    A specialized Header for Authorization.
     
    Like an Optional, but the value can be null and instead of a value, there can be a List of GraphQLErrors instead.
    Annotate your GraphQL Client interface as GraphQLClientApi, so CDI can build and inject it for you.
    Adds a custom header to the http requests sent out by the GraphQL Client.
     
    'Hide' or 'unwrap' the return type of the annotated method from GraphQL, i.e. request the fields contained within the class directly.
    Places a parameter not on the query field but some field deeper in the request, e.g. when you request a team but need to limit the number of members returned:
    Use this builder, when you are not in a CDI context, i.e. when working with Java SE.