webapp/src/graphql/mutation/article-create.ts

29 lines
431 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2022-10-31 15:13:11 +00:00
mutation CreateShoutMutation($shout: ShoutInput!) {
2022-11-24 18:24:42 +00:00
createShout(inp: $shout) {
2022-09-09 11:53:35 +00:00
error
shout {
id
2022-09-09 11:53:35 +00:00
slug
title
subtitle
body
topics {
id
2022-09-09 11:53:35 +00:00
title
slug
}
authors {
id
2022-09-09 11:53:35 +00:00
name
slug
userpic
caption
}
}
}
}
`