INPUT_OBJECT

SendExtensionMessageInput

Input to the sendExtensionMessage mutation.

link GraphQL Schema definition

1input SendExtensionMessageInput {
4
2# The channelID the extension is active on.
3channelID: ID!
7
5# The type of the content.
6contentType: String!
10
8# A JWT token signed with the shared secret for this extension.
9extAuthToken: String!
13
11# The ID of the extension which is sending the message.
12extensionID: ID!
16
14# The content of the message to be sent.
15message: String!
19
17# The set of target message receievers to send to, e.g. "broadcast".
18targets: [String!]!
20}