bigbluebutton-Github/bbb-graphql-server/metadata/actions.graphql
2023-11-28 10:19:01 -03:00

68 lines
1.0 KiB
GraphQL

type Mutation {
dispatchPluginDataChannelMessageMsg(
pluginName: String!
dataChannel: String!
payloadJson: String!
toRoles: [String]!
toUserIds: [String]!
): Boolean
}
type Mutation {
pollPublishResult(
pollId: 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
}
type Mutation {
pollCreate(
pollId: String!
pollType: String!
secretPoll: Boolean!
question: String!
isMultipleResponse: Boolean!
answers: [String]
): Boolean
}
type Mutation {
pollCancel: Boolean
}
type Mutation {
pollSubmitUserTypedVote(
pollId: String!
answer: String!
): Boolean
}
type Mutation {
pollSubmitUserVote(
pollId: String!
answerIds: [Int]
): Boolean
}