OBJECT
Mutation
link GraphQL Schema definition
- type Mutation {
- # Remove all webhooks in the system.
- Int! :
- # Create a new action with the specified name, description, and service name.
- #
- # Arguments
- # actionName:
- # description:
- # serviceName:
- (
- String!, :
- String!, :
- String! :
- ): Int!
- # Create a new webhook with the specified user ID, reaction name, action ID,
- # service ID, and optional outgoing webhook URL.
- #
- # Arguments
- # userId:
- # reactionName:
- # actionId:
- # serviceId:
- # outgoingWebhook:
- (
- String!, :
- String!, :
- String!, :
- String!, :
- String :
- ): Int!
- # Create a new user with the specified name, email, and password.
- #
- # Arguments
- # name:
- # email:
- # password:
- String!, : String!, : String!): Int! ( :
- # Create a new service with the specified name.
- #
- # Arguments
- # name:
- String!): Int! ( :
- # Create a new chained reaction with the specified action name, action service
- # name, reaction name, reaction service name, and optional outgoing webhook URLs.
- #
- # Arguments
- # actionName:
- # actionService:
- # reactionName:
- # reactionService:
- # reactionOutgoingWebhook:
- # actionOutgoingWebhook:
- (
- String!, :
- String!, :
- String!, :
- String!, :
- String, :
- String :
- ): Int!
- # Create new OAuth user data with the specified user ID, refresh token, access
- # token, data, OAuth provider name, and provider user ID.
- #
- # Arguments
- # userId:
- # refreshToken:
- # accessToken:
- # data:
- # oAuthProviderName:
- # providerUserId:
- (
- String!, :
- String, :
- String, :
- JSONObject, :
- String!, :
- String! :
- ): Int!
- # Create a new Discord bot webhook with the specified command, user ID, server ID,
- # reaction name, action ID, service ID, and optional outgoing webhook URL.
- #
- # Arguments
- # command:
- # userId:
- # serverId:
- # reactionName:
- # actionId:
- # serviceId:
- # outgoingWebhook:
- (
- String!, :
- String!, :
- String!, :
- String!, :
- String!, :
- String!, :
- String :
- ): Int!
- # Create a new token with the specified user ID and token type.
- #
- # Arguments
- # userId:
- # type:
- String!, : TokenType!): Token! ( :
- # Delete the service with the specified name.
- #
- # Arguments
- # name:
- String!): Int! ( :
- }
link Require by
This element is not required by anyone