Class _RDFNodeQuery
- java.lang.Object
-
- com.shopify.graphql.support.AbstractQuery<_RDFNodeQuery>
-
- org.topbraidlive.client.java.graphql.platform._RDFNodeQuery
-
public class _RDFNodeQuery extends AbstractQuery<_RDFNodeQuery>
-
-
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 _RDFNodeQuery
addFragmentReference(Fragment<_RDFNodeQuery> fragment)
Adds a_RDFNodeQuery
fragment reference at the current position of the query.static Fragment<_RDFNodeQuery>
createFragment(String name, _RDFNodeQueryDefinition queryDef)
Creates a GraphQL "named" fragment with the specified query type definition._RDFNodeQuery
label()
A human-readable display label for the node._RDFNodeQuery
uri()
The URI of the node, or null for literals.-
Methods inherited from class com.shopify.graphql.support.AbstractQuery
addCustomObjectField, addCustomSimpleField, appendQuotedString, startField, startInlineFragment, withAlias
-
-
-
-
Method Detail
-
label
public _RDFNodeQuery label()
A human-readable display label for the node.
-
uri
public _RDFNodeQuery uri()
The URI of the node, or null for literals.
-
createFragment
public static Fragment<_RDFNodeQuery> createFragment(String name, _RDFNodeQueryDefinition 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 _RDFNodeQuery addFragmentReference(Fragment<_RDFNodeQuery> fragment)
Adds a_RDFNodeQuery
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.
-
-