Class __FieldQuery
- java.lang.Object
-
- com.shopify.graphql.support.AbstractQuery<__FieldQuery>
-
- org.topbraidlive.client.java.graphql.platform.__FieldQuery
-
public class __FieldQuery extends AbstractQuery<__FieldQuery>
-
-
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 __FieldQueryaddFragmentReference(Fragment<__FieldQuery> fragment)Adds a__FieldQueryfragment reference at the current position of the query.__FieldQueryargs(__InputValueQueryDefinition queryDef)static Fragment<__FieldQuery>createFragment(String name, __FieldQueryDefinition queryDef)Creates a GraphQL "named" fragment with the specified query type definition.__FieldQuerydeprecationReason()__FieldQuerydescription()__FieldQueryisDeprecated()__FieldQueryname()__FieldQuerytype(__TypeQueryDefinition queryDef)-
Methods inherited from class com.shopify.graphql.support.AbstractQuery
addCustomObjectField, addCustomSimpleField, appendQuotedString, startField, startInlineFragment, withAlias
-
-
-
-
Method Detail
-
args
public __FieldQuery args(__InputValueQueryDefinition queryDef)
-
deprecationReason
public __FieldQuery deprecationReason()
-
description
public __FieldQuery description()
-
isDeprecated
public __FieldQuery isDeprecated()
-
name
public __FieldQuery name()
-
type
public __FieldQuery type(__TypeQueryDefinition queryDef)
-
createFragment
public static Fragment<__FieldQuery> createFragment(String name, __FieldQueryDefinition 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 __FieldQuery addFragmentReference(Fragment<__FieldQuery> fragment)
Adds a__FieldQueryfragment 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.
-
-