-
Notifications
You must be signed in to change notification settings - Fork 8
/
nabu.graphql
383 lines (344 loc) · 7.35 KB
/
nabu.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
type AccessCondition {
collections: [Collection]
items: [Item]
name: String
}
type Agent {
role_name: String
user: Person
user_name: String
}
"""
Represents non-fractional signed whole numeric values. Since the value may
exceed the size of a 32-bit integer, it's encoded as a string.
"""
scalar BigInt
type Boundary {
east_limit: Float!
north_limit: Float!
south_limit: Float!
west_limit: Float!
}
type Collection {
access_class: String
access_narrative: String
boundaries: Boundary
citation: String
collector: Person
comments: String
complete: Boolean
content_languages: [Language]
countries: [Country]
description: String
doi: String
doi_xml: String
field_of_research: FieldOfResearch
grants: [Grant]
id: ID!
identifier: String!
media: String
metadata_source: String
operator: Person
orthographic_notes: String
permalink: String!
region: String
subject_languages: [Language]
tape_location: Boolean
title: String!
university: University
}
type Country {
boundaries: [Boundary]
code: String!
id: ID!
languages: [Language]
name: String!
}
type DataCategory {
id: ID!
items: [Item]
name: String!
}
type DataType {
id: ID!
items: [Item]
name: String!
}
type DiscourseType {
id: ID!
items: [Item]
name: String!
}
type EmailUser {
email: String
firstName: String
lastName: String
}
type Essence {
bitrate: Int
channels: Int
citation: String
collection: Collection
collectionId: Int
createdAt: ISO8601DateTime
derivedFilesGenerated: Boolean
doi: String
doi_xml: String
duration: Float
filename: String
fps: Int
id: ID!
item: Item
itemId: Int
mimetype: String
permalink: String
samplerate: Int
size: BigInt
updatedAt: ISO8601DateTime
}
"""
Attributes for creating or updating an essence
"""
input EssenceAttributes {
bitrate: Int
channels: Int
duration: Float
fps: Int
mimetype: String!
samplerate: Int
size: BigInt!
}
"""
Autogenerated input type of EssenceCreate
"""
input EssenceCreateInput {
attributes: EssenceAttributes!
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
collectionIdentifier: String!
filename: String!
itemIdentifier: String!
}
"""
Autogenerated return type of EssenceCreate.
"""
type EssenceCreatePayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
essence: Essence!
}
"""
Autogenerated input type of EssenceUpdate
"""
input EssenceUpdateInput {
attributes: EssenceAttributes!
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
id: ID!
}
"""
Autogenerated return type of EssenceUpdate.
"""
type EssenceUpdatePayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
essence: Essence!
}
type FieldOfResearch {
collections: [Collection]
id: ID!
identifier: String!
name: String!
}
type FundingBody {
funded_collections: [Collection]
grants: [Grant]
id: ID!
key_prefix: String
name: String!
}
type Grant {
collection: Collection
funding_body: FundingBody
id: ID!
identifier: String
}
"""
An ISO 8601-encoded datetime
"""
scalar ISO8601DateTime @specifiedBy(url: "https://tools.ietf.org/html/rfc3339")
type Item {
access_class: String
access_condition: AccessCondition
access_condition_name: String
access_narrative: String
born_digital: Boolean
boundaries: Boundary
citation: String
collection: Collection!
collector: Person!
content_languages: [Language]
countries: [Country]
created_at: ISO8601DateTime
data_categories: [DataCategory]
data_types: [DataType]
description: String
dialect: String
digitised_on: String
discourse_type: DiscourseType
doi: String
doi_xml: String
essences: [Essence]
essences_count: Int
full_identifier: String!
id: ID!
identifier: String!
ingest_notes: String
item_agents: [Agent]
language: String
metadata_exportable: Boolean!
operator: Person
original_media: String
originated_on: String
originated_on_narrative: String
permalink: String!
private: Boolean
public: Boolean
received_on: String
region: String
subject_languages: [Language]
title: String
tracking: String
university: University
updated_at: ISO8601DateTime
}
type ItemBwfCsv {
collectionIdentifier: String!
createdAt: ISO8601DateTime
csv: String!
fullIdentifier: String!
itemIdentifier: String!
updatedAt: ISO8601DateTime
}
type ItemId3 {
collectionIdentifier: String!
createdAt: ISO8601DateTime
fullIdentifier: String!
itemIdentifier: String!
txt: String!
updatedAt: ISO8601DateTime
}
type ItemResult {
next_page: Int
results: [Item]!
total: Int!
}
type Language {
archive_link: String
code: String!
collection: [Collection]
countries: [Country]
id: ID!
items_for_content: [Item]
items_for_language: [Item]
name: String!
retired: Boolean
}
type Mutation {
"""
Creates a new essence
"""
essenceCreate(
"""
Parameters for EssenceCreate
"""
input: EssenceCreateInput!
): EssenceCreatePayload
"""
Updates a essence by id
"""
essenceUpdate(
"""
Parameters for EssenceUpdate
"""
input: EssenceUpdateInput!
): EssenceUpdatePayload
"""
Marks as collection a having a deposit form
"""
setCollectionHasDepositForm(
"""
Parameters for SetCollectionHasDepositForm
"""
input: SetCollectionHasDepositFormInput!
): SetCollectionHasDepositFormPayload
}
type Person {
collected_items: Item
country: String
first_name: String
id: ID!
last_name: String
name: String
}
type Query {
"""
Find a collection by identifier. e.g. NT1
"""
collection(identifier: ID!): Collection
"""
Find a collection by identifier. e.g. NT1
"""
essence(filename: String!, fullIdentifier: ID!): Essence
"""
Find an item by full identifier. e.g. NT1-009
"""
item(fullIdentifier: ID!): Item
"""
Get the BWF CSV for an item
"""
itemBwfCsv(filename: String!, fullIdentifier: ID!): ItemBwfCsv
"""
Get the ID3 XML for an item
"""
itemId3(fullIdentifier: ID!): ItemId3
items(access_class: String, access_condition_name: String, access_narrative: String, born_digital: Boolean, collection_identifier: String, collector_name: String, description: String, dialect: String, digitised_on: String, discourse_type_name: String, doi: String, essences_count: Int, full_identifier: String, id: ID, identifier: String, ingest_notes: String, language: String, limit: Int = 10, operator_name: String, original_media: String, originated_on: String, originated_on_narrative: String, page: Int = 1, private: Boolean, received_on: String, region: String, title: String, tracking: String, university_name: String): ItemResult
"""
Find a user by their unikey
"""
userByUnikey(unikey: String!): EmailUser
}
"""
Autogenerated input type of SetCollectionHasDepositForm
"""
input SetCollectionHasDepositFormInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
identifier: String!
}
"""
Autogenerated return type of SetCollectionHasDepositForm.
"""
type SetCollectionHasDepositFormPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
}
type University {
collections: [Collection]
id: ID!
items: [Item]
name: String!
party_identifier: String
}