OBJECT

EntitySSQLQueryResponse

link GraphQL Schema definition

  • type EntitySSQLQueryResponse {
  • # 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!]
  • # List of property names included in the query
  • queriedProperties: [String!]
  • queryType: EntitySSQLQueryType!
  • # optional paged list of EntityRelationships
  • relationshipConnection: EntityRelationshipConnection
  • }