fix: regenerate migration file + fix after rebase dev

This commit is contained in:
Dolu
2022-09-12 17:25:53 +02:00
parent acdf617fb0
commit 2a308d00ae
6 changed files with 65 additions and 29 deletions

View File

@@ -28,6 +28,11 @@ declare global {
}
export interface NexusGenInputs {
ImageInput: { // input type
id?: string | null; // String
name?: string | null; // String
url: string; // String!
}
MakerRoleInput: { // input type
id: number; // Int!
level: NexusGenEnums['RoleLevelEnum']; // RoleLevelEnum!
@@ -35,11 +40,6 @@ export interface NexusGenInputs {
MakerSkillInput: { // input type
id: number; // Int!
}
ImageInput: { // input type
id?: string | null; // String
name?: string | null; // String
url: string; // String!
}
ProfileDetailsInput: { // input type
avatar?: NexusGenInputs['ImageInput'] | null; // ImageInput
bio?: string | null; // String
@@ -265,6 +265,7 @@ export interface NexusGenObjects {
payment_request: string; // String!
}
WalletKey: { // root type
createdAt: NexusGenScalars['Date']; // Date!
is_current: boolean; // Boolean!
key: string; // String!
name: string; // String!
@@ -540,6 +541,7 @@ export interface NexusGenFieldTypes {
payment_request: string; // String!
}
WalletKey: { // field return type
createdAt: NexusGenScalars['Date']; // Date!
is_current: boolean; // Boolean!
key: string; // String!
name: string; // String!
@@ -833,6 +835,7 @@ export interface NexusGenFieldTypeNames {
payment_request: 'String'
}
WalletKey: { // field return type name
createdAt: 'Date'
is_current: 'Boolean'
key: 'String'
name: 'String'

View File

@@ -389,6 +389,7 @@ type Vote {
}
type WalletKey {
createdAt: Date!
is_current: Boolean!
key: String!
name: String!