From e6344957e7971fe9858c2c6f5da4c2b5566b5f05 Mon Sep 17 00:00:00 2001 From: Govind Singh Gurjar Date: Thu, 31 Oct 2024 11:19:25 +0530 Subject: [PATCH] Removed createDirectChat createGroupChat createMessageChat mutations --- .../Mutations/OrganizationMutations.ts | 43 ------------------- src/GraphQl/Mutations/mutations.ts | 1 - .../CreateDirectChat/CreateDirectChat.tsx | 1 - 3 files changed, 45 deletions(-) diff --git a/src/GraphQl/Mutations/OrganizationMutations.ts b/src/GraphQl/Mutations/OrganizationMutations.ts index 3ef2562df9..8c7debb50c 100644 --- a/src/GraphQl/Mutations/OrganizationMutations.ts +++ b/src/GraphQl/Mutations/OrganizationMutations.ts @@ -57,33 +57,7 @@ export const REMOVE_SAMPLE_ORGANIZATION_MUTATION = gql` * @returns The created direct chat object. */ -export const CREATE_GROUP_CHAT = gql` - mutation createGroupChat( - $userIds: [ID!]! - $organizationId: ID! - $title: String! - ) { - createGroupChat( - data: { - userIds: $userIds - organizationId: $organizationId - title: $title - } - ) { - _id - } - } -`; -export const CREATE_DIRECT_CHAT = gql` - mutation createDirectChat($userIds: [ID!]!, $organizationId: ID) { - createDirectChat( - data: { userIds: $userIds, organizationId: $organizationId } - ) { - _id - } - } -`; export const CREATE_CHAT = gql` mutation createChat( @@ -140,23 +114,6 @@ export const SEND_MESSAGE_TO_CHAT = gql` } `; -export const CREATE_MESSAGE_CHAT = gql` - mutation createMessageChat($receiver: ID!, $messageContent: String!) { - createMessageChat(data: { receiver: $receiver, message: $messageContent }) { - _id - createdAt - message - languageBarrier - receiver { - _id - } - sender { - _id - } - updatedAt - } - } -`; export const MESSAGE_SENT_TO_CHAT = gql` subscription messageSentToChat($userId: ID!) { diff --git a/src/GraphQl/Mutations/mutations.ts b/src/GraphQl/Mutations/mutations.ts index daeef2e3bc..628328987e 100644 --- a/src/GraphQl/Mutations/mutations.ts +++ b/src/GraphQl/Mutations/mutations.ts @@ -725,7 +725,6 @@ export { // Changes the role of a user in an organization export { ADD_CUSTOM_FIELD, - CREATE_DIRECT_CHAT, CREATE_SAMPLE_ORGANIZATION_MUTATION, JOIN_PUBLIC_ORGANIZATION, PLUGIN_SUBSCRIPTION, diff --git a/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx b/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx index e0ee9613c3..d98c697354 100644 --- a/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx +++ b/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx @@ -7,7 +7,6 @@ import { useMutation, useQuery } from '@apollo/client'; import useLocalStorage from 'utils/useLocalstorage'; import { CREATE_CHAT, - CREATE_DIRECT_CHAT, } from 'GraphQl/Mutations/OrganizationMutations'; import Table from '@mui/material/Table'; import TableCell, { tableCellClasses } from '@mui/material/TableCell';