-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
120 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import type { ResDeleteResolvers } from "./../../types.generated"; | ||
import { ResBase } from "./ResBase"; | ||
import { base_Res } from "./base_Res"; | ||
|
||
export const ResDelete: ResDeleteResolvers = { | ||
...ResBase, | ||
topic: base_Res.topic, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import type { ResSubscriptResolvers } from './../../types.generated'; | ||
export const ResSubscript: ResSubscriptResolvers = { | ||
/* Implement ResSubscript resolver logic here */ | ||
res: ({ res }) => { | ||
/* ResSubscript.res resolver is required because ResSubscript.res and ResSubscriptMapper.res are not compatible */ | ||
return res | ||
} | ||
}; | ||
import type { ResSubscriptResolvers } from "./../../types.generated"; | ||
export const ResSubscript: ResSubscriptResolvers = { | ||
/* Implement ResSubscript resolver logic here */ | ||
res: ({ res }) => { | ||
/* ResSubscript.res resolver is required because ResSubscript.res and ResSubscriptMapper.res are not compatible */ | ||
return res; | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import type { ResTopicResolvers } from "./../../types.generated"; | ||
import { ResBase } from "./ResBase"; | ||
import { base_Res } from "./base_Res"; | ||
|
||
export const ResTopic: ResTopicResolvers = { | ||
...ResBase, | ||
topic: base_Res.topic, | ||
}; |
2 changes: 1 addition & 1 deletion
2
...erver/src/schema/res/resolvers/ResBase.ts → ...rver/src/schema/res/resolvers/base_Res.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
packages/server/src/schema/storage/resolvers/SetStoragesPayload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import type { SetStoragesPayloadResolvers } from './../../types.generated'; | ||
export const SetStoragesPayload: SetStoragesPayloadResolvers = { | ||
/* Implement SetStoragesPayload resolver logic here */ | ||
}; | ||
import type { SetStoragesPayloadResolvers } from "./../../types.generated"; | ||
export const SetStoragesPayload: SetStoragesPayloadResolvers = { | ||
/* Implement SetStoragesPayload resolver logic here */ | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import type { StorageResolvers } from './../../types.generated'; | ||
export const Storage: StorageResolvers = { | ||
/* Implement Storage resolver logic here */ | ||
}; | ||
import type { StorageResolvers } from "./../../types.generated"; | ||
export const Storage: StorageResolvers = { | ||
/* Implement Storage resolver logic here */ | ||
}; |
3 changes: 1 addition & 2 deletions
3
packages/server/src/schema/token/resolvers/CreateTokenGeneralResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import type { CreateTokenGeneralResponseResolvers } from "./../../types.generated"; | ||
export const CreateTokenGeneralResponse: CreateTokenGeneralResponseResolvers = | ||
{ | ||
}; | ||
{}; |
4 changes: 3 additions & 1 deletion
4
packages/server/src/schema/token/resolvers/Mutation/authTokenReq.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
import type { TokenMasterResolvers } from "./../../types.generated"; | ||
export const TokenMaster: TokenMasterResolvers = { | ||
}; | ||
export const TokenMaster: TokenMasterResolvers = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
import type { TokenReqResolvers } from "./../../types.generated"; | ||
export const TokenReq: TokenReqResolvers = { | ||
}; | ||
export const TokenReq: TokenReqResolvers = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import type { TagsResolvers } from './../../types.generated'; | ||
export const Tags: TagsResolvers = { | ||
/* Implement Tags resolver logic here */ | ||
}; | ||
import type { TagsResolvers } from "./../../types.generated"; | ||
export const Tags: TagsResolvers = { | ||
/* Implement Tags resolver logic here */ | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import type { TopicNormalResolvers } from "./../../types.generated"; | ||
import { TopicSearchBase } from "./TopicSearchBase"; | ||
import { base_Topic } from "./base_Topic"; | ||
|
||
export const TopicNormal: TopicNormalResolvers = { | ||
...TopicSearchBase, | ||
subscribe: base_Topic.subscribe, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import type { TopicOneResolvers } from "./../../types.generated"; | ||
import { TopicSearchBase } from "./TopicSearchBase"; | ||
import { base_Topic } from "./base_Topic"; | ||
|
||
export const TopicOne: TopicOneResolvers = { | ||
...TopicSearchBase, | ||
subscribe: base_Topic.subscribe, | ||
}; |
6 changes: 0 additions & 6 deletions
6
packages/server/src/schema/topic/resolvers/TopicSearchBase.ts
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...r/src/schema/topic/resolvers/TopicBase.ts → .../src/schema/topic/resolvers/base_Topic.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
packages/server/src/schema/user/resolvers/CreateUserResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import type { CreateUserResponseResolvers } from './../../types.generated'; | ||
export const CreateUserResponse: CreateUserResponseResolvers = { | ||
/* Implement CreateUserResponse resolver logic here */ | ||
}; | ||
import type { CreateUserResponseResolvers } from "./../../types.generated"; | ||
export const CreateUserResponse: CreateUserResponseResolvers = { | ||
/* Implement CreateUserResponse resolver logic here */ | ||
}; |
8 changes: 4 additions & 4 deletions
8
packages/server/src/schema/user/resolvers/UpdateUserResponse.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import type { UpdateUserResponseResolvers } from './../../types.generated'; | ||
export const UpdateUserResponse: UpdateUserResponseResolvers = { | ||
/* Implement UpdateUserResponse resolver logic here */ | ||
}; | ||
import type { UpdateUserResponseResolvers } from "./../../types.generated"; | ||
export const UpdateUserResponse: UpdateUserResponseResolvers = { | ||
/* Implement UpdateUserResponse resolver logic here */ | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import type { UserResolvers } from './../../types.generated'; | ||
export const User: UserResolvers = { | ||
/* Implement User resolver logic here */ | ||
}; | ||
import type { UserResolvers } from "./../../types.generated"; | ||
export const User: UserResolvers = { | ||
/* Implement User resolver logic here */ | ||
}; |