INPUT_OBJECT

UnsubscribeEmailInput

Input to the unsubscribe mutation. One of "channel" or "type" fields must be provided.

link GraphQL Schema definition

1input UnsubscribeEmailInput {
4
2# The unique ID of the origin email.
3sourceEmailID: String!
7
5# The email type of the origin email.
6sourceEmailType: String!
10
8# ID of the channel whose notifications should be blocked.
9targetChannelID: ID
13
11# The email type from which the user is unsubscribing.
12targetEmailType: String
16
14# ID of the user requesting the unsubscribe action.
15userID: ID!
19
17# Server signature to verify authenticity of the link author.
18validatingHash: String!
20}