aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/schema/types/comment.types.ts
blob: 00cff776b204555f92ff01257e875a5181ff62ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
export const commentTypes = `enum CommentsConnectionOrderbyEnum {
  COMMENT_AGENT
  COMMENT_APPROVED
  COMMENT_AUTHOR
  COMMENT_AUTHOR_EMAIL
  COMMENT_AUTHOR_IP
  COMMENT_AUTHOR_URL
  COMMENT_CONTENT
  COMMENT_DATE
  COMMENT_DATE_GMT
  COMMENT_ID
  COMMENT_IN
  COMMENT_KARMA
  COMMENT_PARENT
  COMMENT_POST_ID
  COMMENT_TYPE
  USER_ID
}

type Commenter {
  avatar: Avatar
  name: String
  url: String
}

type CommentToCommenterConnectionEdge {
  cursor: String
  node: Commenter!
}

enum CommentStatusEnum {
  APPROVE
  HOLD
  SPAM
  TRASH
}

type Comment {
  approved: Boolean
  author: CommentToCommenterConnectionEdge
  content(format: PostObjectFieldFormatEnum): String
  databaseId: Int!
  date: String
  parentDatabaseId: Int
  status: CommentStatusEnum
}

input RootQueryToCommentConnectionWhereArgs {
  contentId: ID
  contentName: String
  order: OrderEnum
  orderby: CommentsConnectionOrderbyEnum
  parent: Int
  status: String
}

type RootQueryToCommentConnectionPageInfo {
  endCursor: String
  hasNextPage: Boolean!
  hasPreviousPage: Boolean!
  startCursor: String
  total: Int
}

type RootQueryToCommentConnectionEdge {
  cursor: String
  node: Comment!
}

type RootQueryToCommentConnection {
  edges: [RootQueryToCommentConnectionEdge!]!
  nodes: [Comment!]!
  pageInfo: RootQueryToCommentConnectionPageInfo!
}`;