new-types

This commit is contained in:
tonyrewin 2022-11-24 21:24:42 +03:00
parent b46603c553
commit 451602beb5
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import { gql } from '@urql/core'
export default gql` export default gql`
mutation CreateShoutMutation($shout: ShoutInput!) { mutation CreateShoutMutation($shout: ShoutInput!) {
createShout(input: $shout) { createShout(inp: $shout) {
error error
shout { shout {
_id: slug _id: slug

View File

@ -214,7 +214,7 @@ export type MutationCreateReactionArgs = {
} }
export type MutationCreateShoutArgs = { export type MutationCreateShoutArgs = {
input: ShoutInput inp: ShoutInput
} }
export type MutationCreateTopicArgs = { export type MutationCreateTopicArgs = {