webapp/src/graphql/query/core/authors-followed-by.ts
2023-12-20 10:45:29 +03:00

18 lines
325 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query AuthorsFollowedByQuery($slug: String, $user: String, $author_id: Int) {
get_author_followed(slug: $slug, user: $user, author_id: $author_id) {
id
slug
name
pic
bio
created_at
stat {
shouts
}
}
}
`