forked from potsda.mn/mobilizon
4144e9ffd0
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
25 lines
452 B
TypeScript
25 lines
452 B
TypeScript
import gql from "graphql-tag";
|
|
|
|
export const INVITE_MEMBER = gql`
|
|
mutation InviteMember($groupId: ID!, $targetActorUsername: String!) {
|
|
inviteMember(groupId: $groupId, targetActorUsername: $targetActorUsername) {
|
|
id
|
|
role
|
|
parent {
|
|
id
|
|
}
|
|
actor {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const ACCEPT_INVITATION = gql`
|
|
mutation AcceptInvitation($id: ID!) {
|
|
acceptInvitation(id: $id) {
|
|
id
|
|
}
|
|
}
|
|
`;
|