OBJECT

InsightConnection

link GraphQL Schema definition

  • type InsightConnection implements Connection {
  • # Number of insights in this page
  • count: Int!
  • # Count by categories
  • countByCategories: [InsightCountByCategory!] @deprecated( reason: "This is deprecated in favour of Insight Aggregation API" )
  • edges: [InsightEdge!]
  • # Insight stats
  • insightStats: InsightStats!
  • # List of insights in this page
  • insights: [Insight!]
  • # Impacted Entities of all matching Insights.
  • # TODO: To remove when this is moved to EntityConnection as part of EINT-3968
  • insightsImpactedEntities: [Entity!]
  • pageInfo: PageInfo!
  • # Insight dimensions
  • perDimensionInsightStats: [InsightStats!]
  • # Total number of insights
  • totalCount: Int
  • }