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`
mutation CreateShoutMutation($shout: ShoutInput!) {
createShout(input: $shout) {
createShout(inp: $shout) {
error
shout {
_id: slug

View File

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