Spaces:
Build error
Build error
twenty / packages /twenty-server /test /integration /graphql /utils /make-graphql-api-request-with-api-key.util.ts
| import { type ASTNode, print } from 'graphql'; | |
| import request from 'supertest'; | |
| type GraphqlOperation = { | |
| query: ASTNode; | |
| variables?: Record<string, unknown>; | |
| }; | |
| export const makeGraphqlAPIRequestWithApiKey = ( | |
| graphqlOperation: GraphqlOperation, | |
| ) => { | |
| const client = request(`http://localhost:${APP_PORT}`); | |
| return client | |
| .post('/graphql') | |
| .set('Authorization', `Bearer ${API_KEY_ACCESS_TOKEN}`) | |
| .send({ | |
| query: print(graphqlOperation.query), | |
| variables: graphqlOperation.variables || {}, | |
| }); | |
| }; | |