Ocelot-Social/webapp/graphql/inviteCodes.js
Moriz Wahl 9300fbd5fc
feat(webapp): redirect on registration for invite links (#8517)
* feat(webapp): redirect on registration for invite links
2025-05-09 17:57:27 +00:00

20 lines
336 B
JavaScript

import gql from 'graphql-tag'
export const validateInviteCodeQuery = gql`
query ($code: String!) {
validateInviteCode(code: $code) {
invitedTo {
id
slug
groupType
}
}
}
`
export const redeemInviteCodeMutation = gql`
mutation ($code: String!) {
redeemInviteCode(code: $code)
}
`