-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
524 lines (472 loc) · 8.87 KB
/
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
scalar Void
scalar Upload
enum UploadStatus {
creating
uploaded
verified
denied
waiting
}
enum Rights {
cc0
undetermined
}
enum Publication {
public
private
validate
declined
}
enum MIME {
AUDIOMPEG
AUDIOMP3
AUDIOAAC
AUDIOOGG
AUDIOOPUS
AUDIOWAV
AUDIOXWAV
IMGJPG
IMGJPEG
IMGTIFF
IMGPNG
IMGAVIF
IMGBMP
IMGWEBP
VIDEOMP4
VIDEOWAV
VIDEOMOV
TEXTPLAIN
APPLICATIONPDF
}
enum MetaKey {
title
type
collection
description
material
height
width
depth
unMapped
object_number
object_name
QRCode
fullname
firstname
lastname
nationality
scopeNote
boxCode
status
likes
date
isTestimonyFor
hasTestimony
}
extend enum MetaKey {
periode
maker
}
extend enum MetaKey {
publication_status
rights
sources
user_action
}
enum UserAction {
created
updated
deleted
}
enum EntityTypes {
frame
story
box_visit
contains
asset
thesaurus
person
testimony
museum
getty
}
enum Collections {
entities
box_visits
mediafiles
story_box
}
enum RelationType {
authoredBy
isIn
contains
isTypeOf
isUsedIn
components
parent
carriedOutBy
stories
visited
inBasket
frames
box_stories
box
story_box_visits
story_box
userConnected
isTestimonyFor
hasTestimony
}
enum StatusKey {
hidden
shown
}
enum ComponentType {
frame
audio
}
enum JSPatchOp {
add
replace
remove
}
input JSPatch {
op: JSPatchOp!
path: [String!]!
value: String!
}
input FrameInput {
storyId: String!
frameId: String!
}
input StoryInput {
id: String
last_frame: String
total_frames: Int
}
input RelationInput {
key: String!
value: String
type: RelationType!
label: String
}
type StringResult {
result: String!
}
type Story {
key: String!
active: Boolean
last_frame: String
total_frames: Int
}
type FrameSeen {
id: String!
date: Int!
}
type Metadata {
key: MetaKey!
value: String
nestedMetaData: Entity
lang: String
unMappedKey: String
label: String
type: RelationType
}
input MetadataInput {
key: MetaKey!
value: String!
lang: String
label: String
}
type MetadataCollection {
label: String!
data: [Metadata]
nested: Boolean
}
type Entity {
_key: String
id: String!
object_id: String!
ldesResource: String
type: String!
metadata(key: [MetaKey]): [Metadata]!
metadataByLabel(key: [String]): [Metadata]!
metadataCollection(key: [MetaKey], label: [String]): [MetadataCollection]
title: [Metadata]!
publicationStatus: [Metadata]
scopeNote: [Metadata]!
collections: [Relation]!
relations: [Relation]
relationMetadata: [Relation]
components: [Entity]
componentsOfType(key: String): [Entity]
assets: [Entity]
frames: [Entity]
mediafiles: [MediaFile]
nonPublicMediafiles: [MediaFile]
primary_mediafile: String
primary_transcode: String
primary_transcode_location: String
primary_mediafile_info: MediaInfo
primary_mediafile_location: String
primary_width: String
primary_height: String
linkedParentEntity: Entity
user: String
}
type MediaInfo {
width: String!
height: String!
}
type MediaFileMetadata {
key: String
value: String
}
type MimeType {
type: String
mime: MIME
audio: Boolean
video: Boolean
image: Boolean
pdf: Boolean
}
type MediaFile {
_id: String!
_key: String!
original_file_location: String
thumbnail_file_location: String
filename: String
transcode_filename: String
transcode_file_location: String
entities: [String]
mediainfo: MediaInfo
metadata: [MediaFileMetadata]
mediatype: MimeType
mimetype: String
img_width: String
img_height: String
}
type Position {
x: Float
y: Float
z: Float
}
type Relation {
key: String!
type: RelationType!
order: Int
label: String
value: String
timestamp_start: Float
timestamp_end: Float
timestamp_zoom: Float
x: Float
y: Float
z: Float
position: Position
scale: Float
audioFile: String
subtitleFile: String
date: String
active: Boolean
last_frame: String
seen_frames: [FrameSeen]
total_frames: Int
setMediafile: Int
}
input EntityInfo {
type: EntityTypes!
title: String!
description: String!
}
input EntityInfoInput {
type: String!
title: String!
description: String!
}
type EntitiesResults {
results: [Entity]
relations: [Relation]
count: Int
limit: Int
}
type MediafilesResults {
results: [MediaFile]
relations: [Relation]
count: Int
limit: Int
}
type BoxVisitersResults {
results: [BoxVisiter]
relations: [Relation]
count: Int
limit: Int
}
type RelationsResults {
results: [Relation]
count: Int
limit: Int
}
input SearchFilter {
value: String
isAsc: Boolean
key: String
relation_filter: [String]
randomize: Boolean
seed: String
has_mediafile: Boolean
skip_relations: Boolean
and_filter: Boolean
}
input TextInput {
value: String
}
input MultiSelectInput {
value: [String]
AndOrValue: Boolean
}
enum AdvancedInputType {
TextInput
MultiSelectInput
}
input FilterInput {
key: String!
type: AdvancedInputType!
textInput: TextInput
multiSelectInput: MultiSelectInput
}
type User {
id: String!
email: String!
family_name: String!
given_name: String!
name: String!
preferred_username: String!
}
type BoxVisiter {
_key: String
id: String!
type: String!
relations: [Relation]
relationByType(type: RelationType!): [Relation]
frames_seen_last_visit: Int
code: String!
start_time: String
touch_table_time: String
ticketUsed: Int
storyboxes: [Entity]
}
type Ticket {
code: String!
body: String!
}
input KeyValuePairInput {
key: String
value: String
}
type KeyValuePair {
key: String
value: String
}
input StoryboxBuildInput {
frameId: String
title: String
language: String
description: String
assets: [String]
assetTimings: [KeyValuePairInput]
assetDescriptions: [KeyValuePairInput]
}
type StoryboxBuild {
frameId: String!
title: String
language: String
description: String
assets: [Entity]!
assetTimings: [KeyValuePair]!
assetDescriptions: [KeyValuePair]
}
input MediaFileInput {
filename: String
metadata: [MetadataInput!]
}
type UploadComposable {
file_location: String
base64Image: String
metadata(key: [MetaKey]): [Metadata]
relations: [Relation]
liscense: String
action: UserAction
}
type Query {
PrintBoxTicket(code: String!): Ticket!
ActiveBox(id: String): EntitiesResults!
BoxVisiters: BoxVisitersResults
BoxVisiterByCode(code: String!): BoxVisiter
BoxVisiterRelationsByType(code: String!, type: RelationType!): [Relation]
CreateBoxVisiter(storyId: String!): BoxVisiter
Stories: EntitiesResults
CreateEntity(entityInfo: EntityInfoInput!): Entity
Entity(id: String!): Entity
GetStoryById(id: String!): Entity
Entities(
limit: Int
skip: Int
searchValue: SearchFilter!
fetchPolicy: String
randomization: Boolean
seed: String
and_filter: Boolean
): EntitiesResults
Relations(searchValue: SearchFilter!, fetchPolicy: String): RelationsResults
User: User
StoryBox: Entity
RelationsAsEntities(id: String!): [Entity]
LinkStorybox(code: String!): Entity
CreateStorybox(storyboxInfo: StoryboxBuildInput!): Entity
Storybox(limit: Int, skip: Int): EntitiesResults
AddEntityAsRelation(entityId: String!, entityRelationId: String!): [Relation]
LinkTestimonyToAsset(assetId: String!, testimonyId: String!): [Relation]
LinkFrameToVisiter(frameId: String!): BoxVisiter
GetvisiterOfEntity(id: String!): BoxVisiter
GetUploadRelations(searchValue: String!): EntitiesResults
BasketByCustomFrameId(frameId: String!): [Relation]
GetMyUploadedAssets(limit: Int, skip: Int): EntitiesResults
UploadObjectFromEntity(entityId: String!): UploadComposable
GetTestimoniesOfUser(limit: Int, skip: Int): EntitiesResults
GetTestimoniesOfAsset(assetId: String!): [Entity]
PublishStorybox(frameId: String!): BoxVisiter!
CheckIfUploadIsDuplicate(base64Image: String!): StringResult!
CreateSubtitlesForUpload(frameId: String!): StringResult!
}
type Mutation {
replaceMetadata(id: String!, metadata: [MetadataInput!]!): [Metadata!]!
AddRelation(
entityId: String!
relation: RelationInput!
collection: String
): [Relation]!
AddStoryToBoxVisiter(code: String!, storyId: String!): BoxVisiter
AddFrameToStoryBoxVisiter(code: String!, frameInput: FrameInput!): BoxVisiter
DeleteBoxVisiterBasketItem(code: String!, relationId: String!): [Relation]!
AddTouchTableTime(_code: String!): BoxVisiter
AddAssetToBoxVisiter(
code: String!
assetId: String!
type: RelationType!
): [Relation]!
DeleteEntity(id: String!): String
UpdatedScannedOfBoxvisiter(code: String!): BoxVisiter
UploadMediafile(
media: MediaFileInput!
file: Upload
relations: [RelationInput]
metadata: [MetadataInput]
): MediaFile
UpdateEntity(
id: String!
metadata: [MetadataInput]!
relations: [RelationInput]!
): Entity
CreateTestimony(entityInfo: EntityInfo!, assetId: String!): [Entity]
}