Class _EnumValueQuery
- java.lang.Object
-
- com.shopify.graphql.support.AbstractQuery<_EnumValueQuery>
-
- org.topbraidlive.client.java.graphql.platform._EnumValueQuery
-
public class _EnumValueQuery extends AbstractQuery<_EnumValueQuery>
Metadata about an enum value.
-
-
Field Summary
-
Fields inherited from class com.shopify.graphql.support.AbstractQuery
_queryBuilder, ALIAS_SUFFIX_SEPARATOR, CUSTOM_FIELD_LABEL
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description _EnumValueQueryaddFragmentReference(Fragment<_EnumValueQuery> fragment)Adds a_EnumValueQueryfragment reference at the current position of the query.static Fragment<_EnumValueQuery>createFragment(String name, _EnumValueQueryDefinition queryDef)Creates a GraphQL "named" fragment with the specified query type definition._EnumValueQueryEncodedValue()The JSON-encoded RDF node, for internal use for now._EnumValueQuerylabel()The display label of the enum value._EnumValueQueryname()The GraphQL name of the enum value.-
Methods inherited from class com.shopify.graphql.support.AbstractQuery
addCustomObjectField, addCustomSimpleField, appendQuotedString, startField, startInlineFragment, withAlias
-
-
-
-
Method Detail
-
EncodedValue
public _EnumValueQuery EncodedValue()
The JSON-encoded RDF node, for internal use for now.
-
label
public _EnumValueQuery label()
The display label of the enum value.
-
name
public _EnumValueQuery name()
The GraphQL name of the enum value.
-
createFragment
public static Fragment<_EnumValueQuery> createFragment(String name, _EnumValueQueryDefinition queryDef)
Creates a GraphQL "named" fragment with the specified query type definition. The generics nature of fragments ensures that a fragment can only be used at the right place in the GraphQL request.- Parameters:
name- The name of the fragment, must be unique for a given GraphQL request.queryDef- The fragment definition.- Returns:
- The fragment of a given generics type.
-
addFragmentReference
public _EnumValueQuery addFragmentReference(Fragment<_EnumValueQuery> fragment)
Adds a_EnumValueQueryfragment reference at the current position of the query. For example for a fragment namedtest, calling this method will add the reference...testin the query. For GraphQL types implementing an interface, there will be some similar methods using the Query type of each implemented interface.- Parameters:
fragment- The fragment to reference.
-
-