fix: avatar disappear when editing a person (#1440)
This commit is contained in:
@ -3232,7 +3232,7 @@ export type UpdateOnePersonMutationVariables = Exact<{
|
||||
}>;
|
||||
|
||||
|
||||
export type UpdateOnePersonMutation = { __typename?: 'Mutation', updateOnePerson?: { __typename?: 'Person', id: string, city?: string | null, email?: string | null, jobTitle?: string | null, linkedinUrl?: string | null, xUrl?: string | null, firstName?: string | null, lastName?: string | null, displayName: string, phone?: string | null, createdAt: string, company?: { __typename?: 'Company', domainName: string, name: string, id: string } | null } | null };
|
||||
export type UpdateOnePersonMutation = { __typename?: 'Mutation', updateOnePerson?: { __typename?: 'Person', id: string, city?: string | null, avatarUrl?: string | null, email?: string | null, jobTitle?: string | null, linkedinUrl?: string | null, xUrl?: string | null, firstName?: string | null, lastName?: string | null, displayName: string, phone?: string | null, createdAt: string, company?: { __typename?: 'Company', domainName: string, name: string, id: string } | null } | null };
|
||||
|
||||
export type UploadPersonPictureMutationVariables = Exact<{
|
||||
id: Scalars['String'];
|
||||
@ -5016,6 +5016,7 @@ export const UpdateOnePersonDocument = gql`
|
||||
name
|
||||
id
|
||||
}
|
||||
avatarUrl
|
||||
email
|
||||
jobTitle
|
||||
linkedinUrl
|
||||
|
||||
@ -13,6 +13,7 @@ export const UPDATE_ONE_PERSON = gql`
|
||||
name
|
||||
id
|
||||
}
|
||||
avatarUrl
|
||||
email
|
||||
jobTitle
|
||||
linkedinUrl
|
||||
|
||||
Reference in New Issue
Block a user