|
| 1 | +/* This file was automatically generated. DO NOT UPDATE MANUALLY. */ |
| 2 | +import type { Resolvers } from './types.generated.ts'; |
| 3 | +import { me as Query_me } from './user/resolvers/Query/me.ts'; |
| 4 | +import { topicById as Query_topicById } from './topic/resolvers/Query/topicById.ts'; |
| 5 | +import { topicsCreatedByUser as Query_topicsCreatedByUser } from './topic/resolvers/Query/topicsCreatedByUser.ts'; |
| 6 | +import { userByAccountName as Query_userByAccountName } from './user/resolvers/Query/userByAccountName.ts'; |
| 7 | +import { topicCreate as Mutation_topicCreate } from './topic/resolvers/Mutation/topicCreate.ts'; |
| 8 | +import { topicEdit as Mutation_topicEdit } from './topic/resolvers/Mutation/topicEdit.ts'; |
| 9 | +import { profileChanges as Subscription_profileChanges } from './user/resolvers/Subscription/profileChanges.ts'; |
| 10 | +import { PaginationResult } from './base/resolvers/PaginationResult.ts'; |
| 11 | +import { PayloadError } from './base/resolvers/PayloadError.ts'; |
| 12 | +import { Profile } from './user/resolvers/Profile.ts'; |
| 13 | +import { Topic } from './topic/resolvers/Topic.ts'; |
| 14 | +import { TopicByIdResult } from './topic/resolvers/TopicByIdResult.ts'; |
| 15 | +import { TopicCreateResult } from './topic/resolvers/TopicCreateResult.ts'; |
| 16 | +import { TopicEditResult } from './topic/resolvers/TopicEditResult.ts'; |
| 17 | +import { TopicsCreatedByUserResult } from './topic/resolvers/TopicsCreatedByUserResult.ts'; |
| 18 | +import { User } from './user/resolvers/User.ts'; |
| 19 | +import { UserResult } from './user/resolvers/UserResult.ts'; |
| 20 | +import { SomeRandomScalar } from './base/resolvers/SomeRandomScalar.ts'; |
| 21 | +import { DateTimeResolver } from 'graphql-scalars'; |
| 22 | +export const resolvers: Resolvers = { |
| 23 | + Query: { |
| 24 | + me: Query_me, |
| 25 | + topicById: Query_topicById, |
| 26 | + topicsCreatedByUser: Query_topicsCreatedByUser, |
| 27 | + userByAccountName: Query_userByAccountName, |
| 28 | + }, |
| 29 | + Mutation: { |
| 30 | + topicCreate: Mutation_topicCreate, |
| 31 | + topicEdit: Mutation_topicEdit, |
| 32 | + }, |
| 33 | + Subscription: { profileChanges: Subscription_profileChanges }, |
| 34 | + PaginationResult: PaginationResult, |
| 35 | + PayloadError: PayloadError, |
| 36 | + Profile: Profile, |
| 37 | + Topic: Topic, |
| 38 | + TopicByIdResult: TopicByIdResult, |
| 39 | + TopicCreateResult: TopicCreateResult, |
| 40 | + TopicEditResult: TopicEditResult, |
| 41 | + TopicsCreatedByUserResult: TopicsCreatedByUserResult, |
| 42 | + User: User, |
| 43 | + UserResult: UserResult, |
| 44 | + SomeRandomScalar: SomeRandomScalar, |
| 45 | + DateTime: DateTimeResolver, |
| 46 | +}; |
0 commit comments