2023-04-20 13:58:56 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2023-05-07 15:23:48 +00:00
|
|
|
mutation PublishShoutMutation($shoutId: Int!, $shoutInput: ShoutInput) {
|
|
|
|
publishShout(shout_id: $shoutId, shout_input: $shoutInput) {
|
2023-04-20 13:58:56 +00:00
|
|
|
error
|
|
|
|
shout {
|
|
|
|
id
|
|
|
|
slug
|
|
|
|
title
|
|
|
|
subtitle
|
|
|
|
body
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|