2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2022-09-13 13:38:26 +00:00
|
|
|
mutation RefreshSessionMutation {
|
2022-09-09 11:53:35 +00:00
|
|
|
refreshSession {
|
|
|
|
error
|
|
|
|
token
|
|
|
|
user {
|
|
|
|
_id: slug
|
|
|
|
name
|
|
|
|
slug
|
|
|
|
bio
|
|
|
|
userpic
|
|
|
|
links
|
|
|
|
}
|
2022-10-04 12:16:07 +00:00
|
|
|
news {
|
|
|
|
unread
|
2022-09-09 11:53:35 +00:00
|
|
|
inbox
|
|
|
|
topics
|
|
|
|
authors
|
|
|
|
communities
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|