webapp/src/graphql/mutation/shout-publish.ts

17 lines
284 B
TypeScript
Raw Normal View History

2023-05-05 20:05:50 +00:00
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
}
}
}
`