Class _TestResultQuery
- java.lang.Object
-
- com.shopify.graphql.support.AbstractQuery<_TestResultQuery>
-
- org.topbraidlive.client.java.graphql.platform._TestResultQuery
-
public class _TestResultQuery extends AbstractQuery<_TestResultQuery>
-
-
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 _TestResultQuery
actualResult()
An encoded RDF value representing the actual result delivered by the test run._TestResultQuery
addFragmentReference(Fragment<_TestResultQuery> fragment)
Adds a_TestResultQuery
fragment reference at the current position of the query.static Fragment<_TestResultQuery>
createFragment(String name, _TestResultQueryDefinition queryDef)
Creates a GraphQL "named" fragment with the specified query type definition._TestResultQuery
expectedResult()
An encoded RDF value representing the actual result delivered by the test run._TestResultQuery
message()
A human-readable message for the test result._TestResultQuery
testCase(_RDFNodeQueryDefinition queryDef)
The test case resource, with label and uri fields.-
Methods inherited from class com.shopify.graphql.support.AbstractQuery
addCustomObjectField, addCustomSimpleField, appendQuotedString, startField, startInlineFragment, withAlias
-
-
-
-
Method Detail
-
actualResult
public _TestResultQuery actualResult()
An encoded RDF value representing the actual result delivered by the test run.
-
expectedResult
public _TestResultQuery expectedResult()
An encoded RDF value representing the actual result delivered by the test run.
-
message
public _TestResultQuery message()
A human-readable message for the test result. Null if the test case execute successfully.
-
testCase
public _TestResultQuery testCase(_RDFNodeQueryDefinition queryDef)
The test case resource, with label and uri fields.
-
createFragment
public static Fragment<_TestResultQuery> createFragment(String name, _TestResultQueryDefinition 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 _TestResultQuery addFragmentReference(Fragment<_TestResultQuery> fragment)
Adds a_TestResultQuery
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.
-
-