bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/raisehand-notifier/queries.jsx
2024-03-22 11:29:15 -03:00

25 lines
371 B
JavaScript

import { gql } from '@apollo/client';
export const RAISED_HAND_USERS = gql`
subscription RaisedHandUsers {
user(
where: {
raiseHand: {_eq: true}
},
order_by: [
{raiseHandTime: asc_nulls_last},
]) {
userId
name
color
presenter
isModerator
raiseHand
raiseHandTime
}
}`;
export default {
RAISED_HAND_USERS,
};