webapp/src/graphql/query/my-collabs.ts
2022-09-09 14:53:35 +03:00

17 lines
210 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query GetCollabsQuery {
getCollabs {
authors {
slug
name
pic
}
createdAt
body
title
}
}
`