arch: move web folder into api & move api to top level
This commit is contained in:
12
frontend/src/shared/graphql/team/deleteTeamMember.ts
Normal file
12
frontend/src/shared/graphql/team/deleteTeamMember.ts
Normal file
@ -0,0 +1,12 @@
|
||||
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;
|
Reference in New Issue
Block a user