
# Conflicts: # src/components/Editor/Editor.tsx # src/components/Editor/EditorFloatingMenu/EditorFloatingMenu.module.scss # src/components/Editor/EditorFloatingMenu/EditorFloatingMenu.tsx # src/components/Editor/EditorFloatingMenu/Menu/Menu.tsx # src/components/Editor/UploadModal/UploadModalContent.tsx
19 lines
246 B
TypeScript
19 lines
246 B
TypeScript
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
|
query AuthorsAllQuery {
|
|
authorsAll {
|
|
id
|
|
slug
|
|
name
|
|
bio
|
|
userpic
|
|
stat {
|
|
shouts
|
|
followers
|
|
comments: commented
|
|
}
|
|
}
|
|
}
|
|
`
|