aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/schema/types/common.types.ts
blob: 03e066cdf54d2141c201d877476691672436f86b (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
export const commonTypes = `enum PostObjectFieldFormatEnum {
  RAW
  RENDERED
}

enum OrderEnum {
  ASC
  DESC
}

enum PostObjectsConnectionOrderbyEnum {
  AUTHOR
  COMMENT_COUNT
  DATE
  IN
  MENU_ORDER
  MODIFIED
  NAME_IN
  PARENT
  SLUG
  TITLE
}

enum AvatarRatingEnum {
  G
  PG
  R
  X
}

type Avatar {
  height: Int
  url: String
  width: Int
}

type ContentPartsType {
  afterMore(format: PostObjectFieldFormatEnum): String
  beforeMore(format: PostObjectFieldFormatEnum): String
}

type InfoType {
  wordsCount: Int
}

type PostTypeSEO {
  metaDesc: String
  title: String
}`;