2024-01-23 11:47:02 +00:00
|
|
|
import { gql } from '@apollo/client';
|
|
|
|
|
|
|
|
export const removeMember = gql`
|
|
|
|
mutation ($memberId: String!) {
|
|
|
|
removeMember(memberId: $memberId)
|
|
|
|
}
|
|
|
|
`;
|
2024-01-25 05:14:51 +00:00
|
|
|
|
|
|
|
export const addEnvironmentVariables = gql`
|
|
|
|
mutation ($projectId: String!, $environmentVariables: [AddEnvironmentVariableInput!]) {
|
|
|
|
addEnvironmentVariables(projectId: $projectId, environmentVariables: $environmentVariables)
|
|
|
|
}
|
|
|
|
`;
|