Files
hoppscotch/packages/hoppscotch-app/helpers/backend/gql/queries/pendingInvites.graphql
Andrew Bastin 0ba31b6c79 feat: initial team invites implementation
Co-authored-by: Liyas Thomas <hi@liyasthomas.com>
2021-10-17 15:05:43 +05:30

11 lines
153 B
GraphQL

query GetPendingInvites($teamID: ID!) {
team(teamID: $teamID) {
id
teamInvitations {
inviteeRole
inviteeEmail
id
}
}
}