Clean server post refactor to remove Hasura (#156)
* Clean BE post refactor to remove Hasura * Add server CI
This commit is contained in:
@ -6,34 +6,35 @@ import { PersonUncheckedCreateNestedManyWithoutCompanyInput } from '../person/pe
|
||||
|
||||
@InputType()
|
||||
export class CompanyUncheckedCreateWithoutAccountOwnerInput {
|
||||
@Field(() => String, { nullable: false })
|
||||
id!: string;
|
||||
|
||||
@Field(() => String, {nullable:false})
|
||||
id!: string;
|
||||
@Field(() => Date, { nullable: true })
|
||||
createdAt?: Date | string;
|
||||
|
||||
@Field(() => Date, {nullable:true})
|
||||
createdAt?: Date | string;
|
||||
@Field(() => Date, { nullable: true })
|
||||
updatedAt?: Date | string;
|
||||
|
||||
@Field(() => Date, {nullable:true})
|
||||
updatedAt?: Date | string;
|
||||
@Field(() => Date, { nullable: true })
|
||||
deletedAt?: Date | string;
|
||||
|
||||
@Field(() => Date, {nullable:true})
|
||||
deletedAt?: Date | string;
|
||||
@Field(() => String, { nullable: false })
|
||||
name!: string;
|
||||
|
||||
@Field(() => String, {nullable:false})
|
||||
name!: string;
|
||||
@Field(() => String, { nullable: false })
|
||||
domainName!: string;
|
||||
|
||||
@Field(() => String, {nullable:false})
|
||||
domainName!: string;
|
||||
@Field(() => String, { nullable: false })
|
||||
address!: string;
|
||||
|
||||
@Field(() => String, {nullable:false})
|
||||
address!: string;
|
||||
@Field(() => Int, { nullable: true })
|
||||
employees?: number;
|
||||
|
||||
@Field(() => Int, {nullable:true})
|
||||
employees?: number;
|
||||
@HideField()
|
||||
workspaceId!: string;
|
||||
|
||||
@HideField()
|
||||
workspaceId!: string;
|
||||
|
||||
@Field(() => PersonUncheckedCreateNestedManyWithoutCompanyInput, {nullable:true})
|
||||
people?: PersonUncheckedCreateNestedManyWithoutCompanyInput;
|
||||
@Field(() => PersonUncheckedCreateNestedManyWithoutCompanyInput, {
|
||||
nullable: true,
|
||||
})
|
||||
people?: PersonUncheckedCreateNestedManyWithoutCompanyInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user