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

17 lines
249 B
TypeScript
Raw Normal View History

2023-04-20 13:58:56 +00:00
import { gql } from '@urql/core'
export default gql`
mutation UpdateShoutMutation($slug: String!) {
publishShout(slug: $slug) {
error
shout {
id
slug
title
subtitle
body
}
}
}
`