* Fixed bug for refectch activities and create activity on the currently filtered user. * Refactor optimistif effect --------- Co-authored-by: Charles Bochet <charles@twenty.com>
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const INSERT_ONE_PERSON = gql`
|
|
mutation InsertOnePerson($data: PersonCreateInput!) {
|
|
createOnePerson(data: $data) {
|
|
...personFieldsFragment
|
|
}
|
|
}
|
|
`;
|