13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
export const DELETE_TEAM_MEMBER_MUTATION = gql`
|
|
mutation deleteTeamMember($teamID: UUID!, $userID: UUID!) {
|
|
deleteTeamMember(input: { teamID: $teamID, userID: $userID }) {
|
|
teamID
|
|
userID
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default DELETE_TEAM_MEMBER_MUTATION;
|