io.smallrye.graphql.client.core.FragmentOrOperation 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 a node in a GraphQL document that can contain either an operation (query/mutation/subscription),
* or a definition of a named fragment. On the top level, a GraphQL document basically consists of a list
* of these nodes.
*/
public interface FragmentOrOperation extends Buildable {
}