-
Notifications
You must be signed in to change notification settings - Fork 7
/
my.schema.graphql
228 lines (214 loc) · 4.13 KB
/
my.schema.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# This file was generated based on ".graphqlconfig". Do not edit manually.
schema {
query: Query
}
type Company {
employees: [Employee!]
id: ID!
industry: String
logo: Upload!
logoSmall: Upload
moreImages: [Upload!]
moreImagesSmall: [Upload]
name: String
productPhotos: [Upload!]!
productPhotosSmall: [Upload]!
}
type Employee {
address: String
company: Company
firstName: String
id: ID!
lastName: String
subordinates: [Employee!]
}
type Query {
allCompanies: [Company!]
allCompaniesPaginated(pagination: PaginationInput!): [Company!]
company(id: ID): Company
employee(id: ID): Employee
}
enum fake__Locale {
az
cz
de
de_AT
de_CH
en
en_AU
en_BORK
en_CA
en_GB
en_IE
en_IND
en_US
en_au_ocker
es
es_MX
fa
fr
fr_CA
ge
id_ID
it
ja
ko
nb_NO
nep
nl
pl
pt_BR
ru
sk
sv
tr
uk
vi
zh_CN
zh_TW
}
enum fake__Types {
"An URL for an avatar"
avatarUrl
bankIdentifierCode
bitcoinAddress
city
"Configure color with option: `baseColor`"
colorHex
colorName
companyBS
companyCatchPhrase
companyName
country
countryCode
county
currencyCode
currencyName
currencySymbol
dbCollation
dbColumn
dbEngine
dbType
domainName
"Configure email provider with option: `emailProvider`"
email
fileExtension
filename
financeAccountName
financeTransactionType
firstName
fullName
"Configure date format with option `dateFormat`"
futureDate
hackerAbbr
hackerPhrase
"An image url. Configure image with options: `imageCategory`, `imageWidth`, `imageHeight` and `randomizeImageUrl`"
imageUrl
internationalBankAccountNumber
ipv4Address
ipv6Address
jobTitle
lastName
latitude
locale
longitude
"Lorem Ipsum text. Configure size with option `loremSize`"
lorem
macAddress
mimeType
"Sum of money. Configure with options `minMoney`/`maxMoney` and 'decimalPlaces'."
money
number
"Configure password with option `passwordLength`"
password
"Configure date format with option `dateFormat`"
pastDate
phoneNumber
product
productCategory
productMaterial
productName
"Configure date format with option `dateFormat`"
recentDate
secondaryAddress
semver
state
stateAbbr
"Configure address with option `useFullAddress`"
streetAddress
streetName
url
userAgent
uuid
word
words
zipCode
}
enum fake__imageCategory {
abstract
animals
business
cats
city
fashion
food
nature
nightlife
people
sports
technics
transport
}
enum fake__loremSize {
paragraph
paragraphs
sentence
sentences
word
words
}
input PaginationInput {
limit: Int!
offset: Int!
}
input fake__color {
blue255: Int = 0
green255: Int = 0
red255: Int = 0
}
input fake__options {
"Only for type `colorHex`. [Details here](https://stackoverflow.com/a/43235/4989887)"
baseColor: fake__color = {red255 : 0, green255 : 0, blue255 : 0}
"Only for types `*Date`. Example value: `YYYY MM DD`. [Full Specification](http://momentjs.com/docs/#/displaying/format/)"
dateFormat: String
"Only for type `money`"
decimalPlaces: Int
"Only for type `email`"
emailProvider: String
"Only for type `imageUrl`"
imageCategory: fake__imageCategory
"Only for type `imageUrl`"
imageHeight: Int
"Only for type `imageUrl`"
imageWidth: Int
"Only for type `lorem`"
loremSize: fake__loremSize
"Only for type `money`"
maxMoney: Float
"Only for type `number`"
maxNumber: Float
"Only for type `money`"
minMoney: Float
"Only for type `number`"
minNumber: Float
"Only for type `password`"
passwordLength: Int
"Only for type `number`"
precisionNumber: Float
"Only for type `imageUrl`"
randomizeImageUrl: Boolean
"Only for type `streetAddress`"
useFullAddress: Boolean
}
scalar Upload
scalar examples__JSON