INPUT_OBJECT

MetricsCursorInput

We do not support before filtering for metrics filtering. We can enable this later.

link GraphQL Schema definition

  • input MetricsCursorInput {
  • # Used to specify how many to get when iterating forward.
  • first: Int
  • # Specified after the first page when iterating forwards.
  • after: String
  • # Either specify both (orderBy and orderDirection) or (orderByList and
  • # orderDirectionList).
  • orderBy: String
  • orderDirection: OrderDirection
  • orderByList: [String!]
  • orderDirectionList: [OrderDirection!]
  • }