Annotation Type GraphQLQuery
This annotation marks all generated classes that are queries/mutations/subscription, as defined in the GraphQL
schema.
- Author:
- etienne-sf
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionThe name of the query/mutation/subscription, that is represented by the annotated java class, as defined in the GraphQL schema.The type : query, mutation or subscription, as defined in the GraphQL schema.
-
Element Details
-
name
String nameThe name of the query/mutation/subscription, that is represented by the annotated java class, as defined in the GraphQL schema. -
type
RequestType typeThe type : query, mutation or subscription, as defined in the GraphQL schema.
-