projects/deliberation_at_scale/packages/frontend/state/queries/CreateHelpRequest.graphql (10 lines of code) (raw):
mutation CreateHelpRequest($participantId: UUID!, $roomId: UUID!, $type: helpRequestType!, $externalRoomUrl: String!) {
insertIntohelp_requestsCollection(objects: {
participant_id: $participantId
room_id: $roomId
type: $type
external_room_url: $externalRoomUrl
}) {
affectedCount
}
}