io.smallrye.graphql.client.core.FieldOrFragment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smallrye-graphql-client-api Show documentation
Show all versions of smallrye-graphql-client-api Show documentation
SmallRye specific Client API, extending the MicroProfile client api, allowing us to play with the api first before we move it to the spec
package 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 ("... on Person { name } ")
*/
public interface FieldOrFragment extends Buildable {
}