* Fixed bug for refectch activities and create activity on the currently filtered user. * Refactor optimistif effect --------- Co-authored-by: Charles Bochet <charles@twenty.com>
13 lines
276 B
TypeScript
13 lines
276 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const UPDATE_ONE_COMPANY = gql`
|
|
mutation UpdateOneCompany(
|
|
$where: CompanyWhereUniqueInput!
|
|
$data: CompanyUpdateInput!
|
|
) {
|
|
updateOneCompany(data: $data, where: $where) {
|
|
...companyFieldsFragment
|
|
}
|
|
}
|
|
`;
|