Class _ValidationResultSuggestionQuery
- java.lang.Object
-
- com.shopify.graphql.support.AbstractQuery<_ValidationResultSuggestionQuery>
-
- org.topbraidlive.client.java.graphql.platform._ValidationResultSuggestionQuery
-
public class _ValidationResultSuggestionQuery extends AbstractQuery<_ValidationResultSuggestionQuery>
-
-
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 _ValidationResultSuggestionQueryaddFragmentReference(Fragment<_ValidationResultSuggestionQuery> fragment)Adds a_ValidationResultSuggestionQueryfragment reference at the current position of the query._ValidationResultSuggestionQueryadds()A human-readable list of statements that will be added if the suggestion is applied._ValidationResultSuggestionQueryapplyData()Machine-readable data that can be sent back to the server if the user decides to apply the suggestion._ValidationResultSuggestionQueryconfidence()A confidence for the suggestion, between 0 and 100 if present.static Fragment<_ValidationResultSuggestionQuery>createFragment(String name, _ValidationResultSuggestionQueryDefinition queryDef)Creates a GraphQL "named" fragment with the specified query type definition._ValidationResultSuggestionQuerydeletes()A human-readable list of statements that will be deleted if the suggestion is applied._ValidationResultSuggestionQuerymessage()A description of the suggestion.-
Methods inherited from class com.shopify.graphql.support.AbstractQuery
addCustomObjectField, addCustomSimpleField, appendQuotedString, startField, startInlineFragment, withAlias
-
-
-
-
Method Detail
-
adds
public _ValidationResultSuggestionQuery adds()
A human-readable list of statements that will be added if the suggestion is applied.
-
applyData
public _ValidationResultSuggestionQuery applyData()
Machine-readable data that can be sent back to the server if the user decides to apply the suggestion.
-
confidence
public _ValidationResultSuggestionQuery confidence()
A confidence for the suggestion, between 0 and 100 if present.
-
deletes
public _ValidationResultSuggestionQuery deletes()
A human-readable list of statements that will be deleted if the suggestion is applied.
-
message
public _ValidationResultSuggestionQuery message()
A description of the suggestion.
-
createFragment
public static Fragment<_ValidationResultSuggestionQuery> createFragment(String name, _ValidationResultSuggestionQueryDefinition 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 _ValidationResultSuggestionQuery addFragmentReference(Fragment<_ValidationResultSuggestionQuery> fragment)
Adds a_ValidationResultSuggestionQueryfragment 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.
-
-