INTERFACE

NotificationTargetsProvider

link GraphQL Schema definition

  • interface NotificationTargetsProvider {
  • # Information about this provider
  • providerInfo: NotificationTargetsProviderInfo!
  • # 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
  • queryNotificationTargetTypes(
  • after: String,
  • filter: QueryFilter,
  • first: Int
  • ): NotificationTargetTypeConnection
  • # 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
  • # sort: Sort order for results in the connection
  • queryNotificationTargets(
  • after: String,
  • filter: QueryFilter,
  • first: Int,
  • sort: [QuerySort!]
  • ): NotificationTargetConnection
  • }