fix(frontend): resolve graphql imports from root in app dir

This commit is contained in:
Ruslan Bakiev
2026-02-23 10:08:35 +07:00
parent 21d6e440e3
commit 23d8035571

View File

@@ -1,25 +1,25 @@
<script setup lang="ts">
import { nextTick, onBeforeUnmount, onMounted } from "vue";
import meQuery from "~/graphql/operations/me.graphql?raw";
import chatMessagesQuery from "~/graphql/operations/chat-messages.graphql?raw";
import dashboardQuery from "~/graphql/operations/dashboard.graphql?raw";
import loginMutation from "~/graphql/operations/login.graphql?raw";
import logoutMutation from "~/graphql/operations/logout.graphql?raw";
import logPilotNoteMutation from "~/graphql/operations/log-pilot-note.graphql?raw";
import createCalendarEventMutation from "~/graphql/operations/create-calendar-event.graphql?raw";
import archiveCalendarEventMutation from "~/graphql/operations/archive-calendar-event.graphql?raw";
import createCommunicationMutation from "~/graphql/operations/create-communication.graphql?raw";
import createWorkspaceDocumentMutation from "~/graphql/operations/create-workspace-document.graphql?raw";
import updateCommunicationTranscriptMutation from "~/graphql/operations/update-communication-transcript.graphql?raw";
import updateFeedDecisionMutation from "~/graphql/operations/update-feed-decision.graphql?raw";
import chatConversationsQuery from "~/graphql/operations/chat-conversations.graphql?raw";
import createChatConversationMutation from "~/graphql/operations/create-chat-conversation.graphql?raw";
import selectChatConversationMutation from "~/graphql/operations/select-chat-conversation.graphql?raw";
import archiveChatConversationMutation from "~/graphql/operations/archive-chat-conversation.graphql?raw";
import toggleContactPinMutation from "~/graphql/operations/toggle-contact-pin.graphql?raw";
import confirmLatestChangeSetMutation from "~/graphql/operations/confirm-latest-change-set.graphql?raw";
import rollbackLatestChangeSetMutation from "~/graphql/operations/rollback-latest-change-set.graphql?raw";
import rollbackChangeSetItemsMutation from "~/graphql/operations/rollback-change-set-items.graphql?raw";
import meQuery from "~~/graphql/operations/me.graphql?raw";
import chatMessagesQuery from "~~/graphql/operations/chat-messages.graphql?raw";
import dashboardQuery from "~~/graphql/operations/dashboard.graphql?raw";
import loginMutation from "~~/graphql/operations/login.graphql?raw";
import logoutMutation from "~~/graphql/operations/logout.graphql?raw";
import logPilotNoteMutation from "~~/graphql/operations/log-pilot-note.graphql?raw";
import createCalendarEventMutation from "~~/graphql/operations/create-calendar-event.graphql?raw";
import archiveCalendarEventMutation from "~~/graphql/operations/archive-calendar-event.graphql?raw";
import createCommunicationMutation from "~~/graphql/operations/create-communication.graphql?raw";
import createWorkspaceDocumentMutation from "~~/graphql/operations/create-workspace-document.graphql?raw";
import updateCommunicationTranscriptMutation from "~~/graphql/operations/update-communication-transcript.graphql?raw";
import updateFeedDecisionMutation from "~~/graphql/operations/update-feed-decision.graphql?raw";
import chatConversationsQuery from "~~/graphql/operations/chat-conversations.graphql?raw";
import createChatConversationMutation from "~~/graphql/operations/create-chat-conversation.graphql?raw";
import selectChatConversationMutation from "~~/graphql/operations/select-chat-conversation.graphql?raw";
import archiveChatConversationMutation from "~~/graphql/operations/archive-chat-conversation.graphql?raw";
import toggleContactPinMutation from "~~/graphql/operations/toggle-contact-pin.graphql?raw";
import confirmLatestChangeSetMutation from "~~/graphql/operations/confirm-latest-change-set.graphql?raw";
import rollbackLatestChangeSetMutation from "~~/graphql/operations/rollback-latest-change-set.graphql?raw";
import rollbackChangeSetItemsMutation from "~~/graphql/operations/rollback-change-set-items.graphql?raw";
import {
buildContactDocumentScope,
formatDocumentScope,