INPUT_OBJECT

ExtensionLinkUserInput

The required input for an ExtensionLinkUser mutation.

link GraphQL Schema definition

1input ExtensionLinkUserInput {
4
2# The id of the channel the extension is currently installed on.
3channelID: ID!
7
5# The ID of the extension that the user would like to link/unlink with.
6extensionID: ID!
10
8# The current extension jwt for the user being linked/unlinked.
9jwt: String
13
11# Whether to link or unlink the user from this extension.
12showUser: Boolean!
14}