OBJECT

NotificationTargetsQuery

link GraphQL Schema definition

  • type NotificationTargetsQuery {
  • notificationTargetsProviders: NotificationTargetsProviders!
  • # Query notification target types supported for given notification target provider
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # filter: Input query filter to help filtering output of the
  • # query
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # providerName: Name of the provider to query the notification
  • # target types for
  • queryNotificationTargetTypes(
  • after: String,
  • filter: QueryFilter,
  • first: Int,
  • providerName: String!
  • ): NotificationTargetTypeConnection
  • # Query notification targets supported for given notification target provider
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # filter: Input query filter to help filtering output of the
  • # query
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # providerName: Name of the provider to query the notification
  • # target for
  • # sort: Sort order for results in the connection
  • queryNotificationTargets(
  • after: String,
  • filter: QueryFilter,
  • first: Int,
  • providerName: String!,
  • sort: [QuerySort!]
  • ): NotificationTargetConnection
  • }