OBJECT

DashboardQuery

link GraphQL Schema definition

  • type DashboardQuery {
  • # Query all Custom dashboards
  • # This API follows GraphQL relay pagination specification
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # before: Return records before the given cursor, as per GraphQL
  • # Relay spec
  • # filter: Input filters to filter output of this API
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # sort: Results are sorted as per fields and order specified.
  • # Supported fields are name, category only
  • # Invalid field provided would throw an error : Provide a valid sort field for
  • # fetching dashboards.
  • # Default sort order : updatedOn
  • queryDashboards(
  • after: String,
  • before: String,
  • filter: DashboardFilter,
  • first: Int,
  • sort: QuerySort
  • ): DashboardConnection
  • # Query all default dashboards
  • # This API follows GraphQL relay pagination specification
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # before: Return records before the given cursor, as per GraphQL
  • # Relay spec
  • # filter: Input filters to filter output of this API
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # sort: Results are sorted as per fields and order specified.
  • queryDefaultDashboards(
  • after: String,
  • before: String,
  • filter: DashboardFilter,
  • first: Int,
  • sort: QuerySort
  • ): DashboardDefaultConnection
  • }

link Require by