Class _PathQuery
- java.lang.Object
-
- com.shopify.graphql.support.AbstractQuery<_PathQuery>
-
- org.topbraidlive.client.java.graphql.platform._PathQuery
-
public class _PathQuery extends AbstractQuery<_PathQuery>
Metadata about a sh:path.
-
-
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 _PathQueryaddFragmentReference(Fragment<_PathQuery> fragment)Adds a_PathQueryfragment reference at the current position of the query.static Fragment<_PathQuery>createFragment(String name, _PathQueryDefinition queryDef)Creates a GraphQL "named" fragment with the specified query type definition._PathQueryisInverse()True if the path is an inverse path, false for simple URI predicates or complex paths._PathQuerypredicate()The URI of the predicate if the path is either a direct forward or inverse path, null for complex paths._PathQuerystring()A string representation of the RDF path.-
Methods inherited from class com.shopify.graphql.support.AbstractQuery
addCustomObjectField, addCustomSimpleField, appendQuotedString, startField, startInlineFragment, withAlias
-
-
-
-
Method Detail
-
isInverse
public _PathQuery isInverse()
True if the path is an inverse path, false for simple URI predicates or complex paths.
-
predicate
public _PathQuery predicate()
The URI of the predicate if the path is either a direct forward or inverse path, null for complex paths.
-
string
public _PathQuery string()
A string representation of the RDF path. Can be matched with the 'path' field of validation results.
-
createFragment
public static Fragment<_PathQuery> createFragment(String name, _PathQueryDefinition 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 _PathQuery addFragmentReference(Fragment<_PathQuery> fragment)
Adds a_PathQueryfragment 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.
-
-