2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2022-10-25 16:25:42 +00:00
|
|
|
mutation ConfirmEmailMutation($token: String!) {
|
|
|
|
confirmEmail(token: $token) {
|
2022-09-09 11:53:35 +00:00
|
|
|
error
|
2022-10-25 16:25:42 +00:00
|
|
|
token
|
|
|
|
user {
|
|
|
|
_id: slug
|
|
|
|
email
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
bio
|
|
|
|
userpic
|
|
|
|
links
|
|
|
|
}
|
|
|
|
news {
|
|
|
|
unread
|
|
|
|
topics
|
|
|
|
authors
|
|
|
|
reactions
|
|
|
|
communities
|
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|