This commit is contained in:
Untone 2024-03-19 14:54:40 +03:00
parent 5f939839fb
commit 5a7e416700
3 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,4 @@
import { chatApiUrl } from '../../utils/config'
// inbox
import { createGraphQLClient } from '../createGraphQLClient'
import createChat from '../mutation/chat/chat-create'
@ -21,7 +22,6 @@ import {
QueryLoad_ChatsArgs,
QueryLoad_Messages_ByArgs,
} from '../schema/chat.gen'
import { chatApiUrl } from '../../utils/config'
export const inboxClient = {
private: null,

View File

@ -16,6 +16,7 @@ import type {
Topic,
} from '../schema/core.gen'
import { coreApiUrl } from '../../utils/config'
import { createGraphQLClient } from '../createGraphQLClient'
import createArticle from '../mutation/core/article-create'
import deleteShout from '../mutation/core/article-delete'
@ -46,7 +47,6 @@ import reactionsLoadBy from '../query/core/reactions-load-by'
import topicBySlug from '../query/core/topic-by-slug'
import topicsAll from '../query/core/topics-all'
import topicsRandomQuery from '../query/core/topics-random'
import { coreApiUrl } from "../../utils/config"
const publicGraphQLClient = createGraphQLClient(coreApiUrl)