mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-03 16:15:36 +00:00
14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const shoutMutation = gql`
|
|
mutation ($id: ID!, $type: ShoutTypeEnum!) {
|
|
shout(id: $id, type: $type)
|
|
}
|
|
`
|
|
|
|
export const unshoutMutation = gql`
|
|
mutation ($id: ID!, $type: ShoutTypeEnum!) {
|
|
unshout(id: $id, type: $type)
|
|
}
|
|
`
|