[Server Integration tests] Enrich integration GraphQL API tests (#7699)

### Description

- We are using gql instead of strings to be able to see the graphql code
highlighted

### Demo


![](https://assets-service.gitstart.com/28455/d06016b9-c62c-4e0d-bb16-3d7dd42c5b6b.png)

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>
This commit is contained in:
gitstart-app[bot]
2024-10-17 19:16:19 +02:00
committed by GitHub
parent f08b8fda16
commit 58fd34071c
99 changed files with 3595 additions and 102 deletions

View File

@ -0,0 +1,26 @@
import gql from 'graphql-tag';
import { capitalize } from 'src/utils/capitalize';
type CreateOneOperationFactoryParams = {
objectMetadataSingularName: string;
gqlFields: string;
data?: object;
};
export const createOneOperationFactory = ({
objectMetadataSingularName,
gqlFields,
data = {},
}: CreateOneOperationFactoryParams) => ({
query: gql`
mutation Create${capitalize(objectMetadataSingularName)}($data: ${capitalize(objectMetadataSingularName)}CreateInput) {
create${capitalize(objectMetadataSingularName)}(data: $data) {
${gqlFields}
}
}
`,
variables: {
data,
},
});