6a10a27f2a
* Provide Upload Token through Graphql * Remove wrong file * Rename type to pres_presentation_uploadToken * Implements graphql-action to request an upload token
26 lines
444 B
GraphQL
26 lines
444 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
|
|
}
|
|
|