import { gql } from '@apollo/client'; import { User } from '../../Types/user'; export interface getVideoDataResponse { user: Array> } export type queryUser = Pick export const getVideoData = gql` subscription getvideoData($userIds: [String]!) { user(where: {userId: {_in: $userIds}}) { loggedOut away disconnected emoji name nameSortable role avatar color presenter clientType userId raiseHand isModerator reactionEmoji } } `; export const getVideoDataGrid = gql` subscription getVideoDataGrid { user { loggedOut away disconnected emoji name nameSortable role avatar color presenter clientType userId raiseHand reactionEmoji } } `; export default { getVideoData, getVideoDataGrid, };