TwitchClone / src / graphql / mutations.ts
mutations.ts
Raw
/* tslint:disable */
/* eslint-disable */
// this is an auto generated file. This will be overwritten

export const sendMessage = /* GraphQL */ `
  mutation SendMessage($input: SendMessageInput!) {
    sendMessage(input: $input) {
      id
      content
      createdAt
      author {
        id
        username
        email
      }
    }
  }
`;