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 {
|
2023-04-26 02:37:29 +00:00
|
|
|
id
|
2022-09-09 11:53:35 +00:00
|
|
|
slug
|
|
|
|
title
|
|
|
|
subtitle
|
|
|
|
body
|
|
|
|
topics {
|
2023-04-26 02:37:29 +00:00
|
|
|
id
|
2022-09-09 11:53:35 +00:00
|
|
|
title
|
|
|
|
slug
|
|
|
|
}
|
|
|
|
authors {
|
2022-12-01 18:45:35 +00:00
|
|
|
id
|
2022-09-09 11:53:35 +00:00
|
|
|
name
|
|
|
|
slug
|
|
|
|
userpic
|
|
|
|
caption
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|