mirror of
https://github.com/lingble/twenty.git
synced 2025-11-08 16:53:16 +00:00
### Description - We are using gql instead of strings to be able to see the graphql code highlighted ### Demo  Fixes #7526 --------- Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com> Co-authored-by: Charles Bochet <charles@twenty.com> Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
30 lines
785 B
TypeScript
30 lines
785 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
import { capitalize } from 'src/utils/capitalize';
|
|
|
|
type UpdateOneOperationFactoryParams = {
|
|
objectMetadataSingularName: string;
|
|
gqlFields: string;
|
|
data?: object;
|
|
recordId: string;
|
|
};
|
|
|
|
export const updateOneOperationFactory = ({
|
|
objectMetadataSingularName,
|
|
gqlFields,
|
|
data = {},
|
|
recordId,
|
|
}: UpdateOneOperationFactoryParams) => ({
|
|
query: gql`
|
|
mutation Update${capitalize(objectMetadataSingularName)}($${objectMetadataSingularName}Id: ID, $data: ${capitalize(objectMetadataSingularName)}UpdateInput) {
|
|
update${capitalize(objectMetadataSingularName)}(id: $${objectMetadataSingularName}Id, data: $data) {
|
|
${gqlFields}
|
|
}
|
|
}
|
|
`,
|
|
variables: {
|
|
data,
|
|
[`${objectMetadataSingularName}Id`]: recordId,
|
|
},
|
|
});
|