-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexampleTarget.graphql
95 lines (88 loc) · 1.93 KB
/
exampleTarget.graphql
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
input TweetOrderBy {
sort: TweetSort!
direction: Direction! = ASC
}
enum TweetSort {
id
author
body
createdBy
updatedBy
createdAt
updatedAt
}
input TweetFilter {
# 1
id: ObjID
AND: [TweetFilter!]
NOR: [TweetFilter!]
OR: [TweetFilter!]
NOT: [TweetFilter!] or object?
# 2
id_all: [ObjID!]
id_ne: ObjID
id_in: [ObjID!]
id_nin: [ObjID!]
id_lt: ObjID
id_lte: ObjID
id_gt: ObjID
id_gte: ObjID
id_exists: Boolean
id_type: BSONType
id_contains: String
id_starts_with: String
id_ends_with: String
id_not_contains: String
id_not_starts_with: String
id_not_ends_with: String
id_not_in: [ObjID!]
id_regex: Regex
contains_ci: String
starts_with_ci: String
ends_with_ci: String
not_contains_ci: String
not_starts_with_ci: String
not_ends_with_ci: String
body: String
body_not: String
body_in: [String!]
body_not_in: [String!]
body_lt: String
body_lte: String
body_gt: String
body_gte: String
body_contains: String
body_not_contains: String
body_starts_with: String
body_not_starts_with: String
body_ends_with: String
body_not_ends_with: String
createdAt: Float
createdAt_not: Float
createdAt_in: [Float!]
createdAt_not_in: [Float!]
createdAt_lt: Float
createdAt_lte: Float
createdAt_gt: Float
createdAt_gte: Float
createdAt_contains: Float
createdAt_not_contains: Float
createdAt_starts_with: Float
createdAt_not_starts_with: Float
createdAt_ends_with: Float
createdAt_not_ends_with: Float
updatedAt: Float
updatedAt_not: Float
updatedAt_in: [Float!]
updatedAt_not_in: [Float!]
updatedAt_lt: Float
updatedAt_lte: Float
updatedAt_gt: Float
updatedAt_gte: Float
updatedAt_contains: Float
updatedAt_not_contains: Float
updatedAt_starts_with: Float
updatedAt_not_starts_with: Float
updatedAt_ends_with: Float
updatedAt_not_ends_with: Float
}