OBJECT

HubQueryResponse

link GraphQL Schema definition

  • type HubQueryResponse {
  • # Results of an AggregationQuery
  • entityAggregations: EntityAggregations
  • # paged list of Entities
  • entityConnection: 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
  • entityTreeJSON: 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.
  • entityTreeNodes: [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.
  • entityTreeRoots: [EntityId!]
  • # If the query was invalid, error information
  • errorInfo: [HubQueryErrorInfo!]
  • # generated GraphQL query
  • graphqlQuery: String!
  • # generated GraphQL query broken into lines, this is helpful for readability in a
  • # GraphQL interface
  • graphqlQueryLines: [String!]
  • # Original query
  • query: String!
  • # query type determined from input query
  • queryType: HubQueryType
  • # optional paged list of EntityRelationships
  • relationshipConnection: EntityRelationshipConnection
  • # Information on entity types and fields that are triggered by the query
  • triggers: [HubQueryTrigger!]
  • }