This PR is a bit messy: adding graphql schema adding create company creation on company select on People page some frontend refactoring to be continued --------- Co-authored-by: Charles Bochet <charles@twenty.com>
20 lines
459 B
TypeScript
20 lines
459 B
TypeScript
import * as TypeGraphQL from "type-graphql";
|
|
|
|
export enum PersonScalarFieldEnum {
|
|
id = "id",
|
|
createdAt = "createdAt",
|
|
updatedAt = "updatedAt",
|
|
deletedAt = "deletedAt",
|
|
firstname = "firstname",
|
|
lastname = "lastname",
|
|
email = "email",
|
|
phone = "phone",
|
|
city = "city",
|
|
companyId = "companyId",
|
|
workspaceId = "workspaceId"
|
|
}
|
|
TypeGraphQL.registerEnumType(PersonScalarFieldEnum, {
|
|
name: "PersonScalarFieldEnum",
|
|
description: undefined,
|
|
});
|