17 lines
284 B
TypeScript
17 lines
284 B
TypeScript
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
|
mutation PublishShoutMutation($slug: String!, $shout: ShoutInput!) {
|
|
publishShout(slug: $slug, inp: $shout) {
|
|
error
|
|
shout {
|
|
id
|
|
slug
|
|
title
|
|
subtitle
|
|
body
|
|
}
|
|
}
|
|
}
|
|
`
|