OBJECT
HubQueryResponse
link GraphQL Schema definition
- type HubQueryResponse {
- # Results of an AggregationQuery
- EntityAggregations :
- # paged list of Entities
- EntityConnection :
- # If the SSQL query contained one or more relationships (->) then the results may
- # be in a tree.
- #
- # This field provides an alternative JSON representation of the entityTree
- JSON :
- # If the SSQL query contained one or more relationships (->) then the results may
- # be in a tree.
- # This field represents the individual nodes in the tree. Each node has an Entity
- # or Relationship ID, a type, and
- # a list of child nodes.
- # The entity and relationship instances in the tree are found in the
- # entityConnection and relationshipConnection fields.
- EntityTreeNode!] : [
- # If the SSQL query contained one or more relationships (->) then the results may
- # be in a tree.
- # This field represents the entityIds of all the starting points into the tree.
- # The entity and relationship instances in the tree are found in the
- # entityConnection and relationshipConnection fields.
- EntityId!] : [
- # If the query was invalid, error information
- HubQueryErrorInfo!] : [
- # generated GraphQL query
- String! :
- # generated GraphQL query broken into lines, this is helpful for readability in a
- # GraphQL interface
- String!] : [
- # Original query
- String! :
- # query type determined from input query
- HubQueryType :
- # optional paged list of EntityRelationships
- EntityRelationshipConnection :
- # Information on entity types and fields that are triggered by the query
- HubQueryTrigger!] : [
- }