bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/chat/chat-graphql/chat-header/queries.ts
2023-05-19 15:30:24 -03:00

25 lines
391 B
TypeScript

import { gql } from '@apollo/client';
type chatContent = {
chatId: string;
public: boolean;
participant: {
name: string;
};
}
export interface GetChatDataResponse {
chat: Array<chatContent>;
}
export const GET_CHAT_DATA = gql`
query GetChatData($chatId: String!) {
chat(where: {chatId: {_eq: $chatId }}) {
chatId
public
participant {
name
}
}
}
`;