Class UserQuery
- java.lang.Object
-
- com.shopify.graphql.support.AbstractQuery<UserQuery>
-
- org.topbraidlive.client.java.graphql.platform.UserQuery
-
public class UserQuery extends AbstractQuery<UserQuery>
A TopBraid user (account).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
UserQuery.EmailArguments
static interface
UserQuery.EmailArgumentsDefinition
-
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 UserQuery
addFragmentReference(Fragment<UserQuery> fragment)
Adds aUserQuery
fragment reference at the current position of the query.static Fragment<UserQuery>
createFragment(String name, UserQueryDefinition queryDef)
Creates a GraphQL "named" fragment with the specified query type definition.UserQuery
email()
The email address associated with a user.UserQuery
email(UserQuery.EmailArgumentsDefinition argsDef)
The email address associated with a user.UserQuery
label()
A human-readable display label.UserQuery
Results(_ValidationResultQueryDefinition queryDef)
The (validation) results for the surrounding object, e.g.UserQuery
type(_ResourceQueryDefinition queryDef)
The types of this UserUserQuery
uri()
The URI of the resource.-
Methods inherited from class com.shopify.graphql.support.AbstractQuery
addCustomObjectField, addCustomSimpleField, appendQuotedString, startField, startInlineFragment, withAlias
-
-
-
-
Method Detail
-
Results
public UserQuery Results(_ValidationResultQueryDefinition queryDef)
The (validation) results for the surrounding object, e.g. current constraint violations.
-
email
public UserQuery email()
The email address associated with a user.
-
email
public UserQuery email(UserQuery.EmailArgumentsDefinition argsDef)
The email address associated with a user.
-
label
public UserQuery label()
A human-readable display label.
-
type
public UserQuery type(_ResourceQueryDefinition queryDef)
The types of this User
-
uri
public UserQuery uri()
The URI of the resource.
-
createFragment
public static Fragment<UserQuery> createFragment(String name, UserQueryDefinition 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 UserQuery addFragmentReference(Fragment<UserQuery> fragment)
Adds aUserQuery
fragment reference at the current position of the query. For example for a fragment namedtest
, calling this method will add the reference...test
in 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.
-
-