INTERFACE
NotificationTargetsProvider
link GraphQL Schema definition
- interface NotificationTargetsProvider {
- # Information about this provider
- 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
- (
- String, :
- QueryFilter, :
- 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
- (
- String, :
- QueryFilter, :
- Int, :
- QuerySort!] : [
- ): NotificationTargetConnection
- }