2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2022-11-24 14:59:37 +00:00
|
|
|
mutation GetSessionMutation {
|
|
|
|
getSession {
|
2022-09-09 11:53:35 +00:00
|
|
|
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
|
|
|
topics
|
|
|
|
authors
|
2022-10-21 18:17:04 +00:00
|
|
|
reactions
|
2022-11-25 22:54:56 +00:00
|
|
|
# communities
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|