
# 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
20 lines
285 B
TypeScript
20 lines
285 B
TypeScript
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
|
query TopicsRandomQuery($amount: Int) {
|
|
topicsRandom(amount: $amount) {
|
|
id
|
|
title
|
|
body
|
|
slug
|
|
pic
|
|
# community
|
|
stat {
|
|
shouts
|
|
authors
|
|
followers
|
|
}
|
|
}
|
|
}
|
|
`
|