aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/schema/types/create-comment.types.ts
blob: 31fc54d86e5a62a1f4cffb9695006103bf638aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export const createCommentTypes = `input CreateCommentInput {
  approved: String
  author: String
  authorEmail: String
  authorUrl: String
  clientMutationId: String
  commentOn: Int
  content: String
  date: String
  parent: ID
  status: CommentStatusEnum
  type: String
}

type CreateCommentPayload {
  clientMutationId: String
  comment: Comment
  success: Boolean
}`;