OBJECT

HubQueryTranslation

link GraphQL Schema definition

  • type HubQueryTranslation {
  • # If query is invalid, provides error information
  • errorInfo: [HubQueryErrorInfo!]
  • # If the query is valid, this is its translation into GraphQL
  • graphqlQuery: String
  • # generated GraphQL broken into lines, the field is intended for readability in a
  • # GraphQL interface
  • graphqlQueryLines: [String!]
  • # when false, only errorInfo and timestamp field are guaranteed to be initialized
  • isValid: Boolean!
  • # Original query
  • query: String!
  • # query type determined from input query
  • queryType: HubQueryType
  • # Information on entity types and fields that are triggered by the query
  • triggers: [HubQueryTrigger!]
  • }