33 lines
535 B
GraphQL
33 lines
535 B
GraphQL
type Mutation {
|
|
dispatchPluginDataChannelMessageMsg(
|
|
pluginName: String!
|
|
dataChannel: String!
|
|
payloadJson: String!
|
|
toRoles: [String]!
|
|
toUserIds: [String]!
|
|
): Boolean
|
|
}
|
|
|
|
type Mutation {
|
|
requestPresentationUploadToken(
|
|
podId: String!
|
|
filename: String!
|
|
uploadTemporaryId: String!
|
|
): Boolean
|
|
}
|
|
|
|
type Mutation {
|
|
sendGroupChatMsg(
|
|
chatId: String!
|
|
chatMessageInMarkdownFormat: String!
|
|
): Boolean
|
|
}
|
|
|
|
type Mutation {
|
|
userJoin(
|
|
authToken: String!
|
|
clientType: String!
|
|
): Boolean
|
|
}
|
|
|