# This PR - Addressing #3644 - Migrates the `DELETE /rest/*` endpoint to use TwentyORM - Factorizes common middleware logic into a common module --------- Co-authored-by: martmull <martmull@hotmail.fr>
15 lines
187 B
TypeScript
15 lines
187 B
TypeScript
export const PERSON_GQL_FIELDS = `
|
|
id
|
|
city
|
|
jobTitle
|
|
avatarUrl
|
|
intro
|
|
searchVector
|
|
name {
|
|
firstName
|
|
lastName
|
|
}
|
|
createdAt
|
|
deletedAt
|
|
`;
|