OBJECT

InsightRuleQuery

Insight Rule queries

link GraphQL Schema definition

  • type InsightRuleQuery {
  • # Query to fetch all rules of a given type for a specific Organization
  • #
  • # Arguments
  • # after: [Not documented]
  • # filter: [Not documented]
  • # first: [Not documented]
  • # sort: [Not documented]
  • queryInsightRules(
  • after: String,
  • filter: InsightRuleFilter!,
  • first: Int,
  • sort: [QuerySort!]
  • ): InsightRuleConnection
  • # Query to fetch specific Rules by Ids
  • #
  • # Arguments
  • # ruleIds: [Not documented]
  • queryInsightRulesByIds(ruleIds: [ID!]!): [InsightRule!]
  • }