2022-09-09 11:53:35 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2023-04-20 13:58:56 +00:00
|
|
|
mutation UpdateShoutMutation($slug: String!, $shout: ShoutInput!) {
|
|
|
|
updateShout(slug: $slug, inp: $shout) {
|
2022-09-09 11:53:35 +00:00
|
|
|
error
|
|
|
|
shout {
|
2023-04-20 13:58:56 +00:00
|
|
|
id
|
2022-09-09 11:53:35 +00:00
|
|
|
slug
|
|
|
|
title
|
|
|
|
subtitle
|
|
|
|
body
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|