-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqueryTool.yaml
423 lines (415 loc) · 12.5 KB
/
queryTool.yaml
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
openapi: 3.0.0
info:
title: Folio Query Tool API
version: v1
description: Folio Query Tool API
paths:
/entity-types/{entityTypeId}:
get:
operationId: getEntityType
description: Get definition of an Entity Type.
tags:
- entity-types
parameters:
- $ref: '#/components/parameters/entityTypeId'
- $ref: '#/components/parameters/include-hidden'
responses:
'200':
description: 'Definition of the requested entity type'
content:
application/json:
example:
id: 0cb79a4c-f7eb-4941-a104-745224ae0292
name: item_details
private: false
root: true
columns: []
schema:
$ref: '#/components/schemas/entityType'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/entity-types/{entityTypeId}/columns/{columnName}/values:
get:
operationId: getColumnValues
description: Get the values of an entity type column.
tags:
- entity-types
parameters:
- $ref: '#/components/parameters/entityTypeId'
- $ref: '#/components/parameters/columnName'
- $ref: '#/components/parameters/search'
responses:
'200':
description: 'Values of an entity type column'
content:
application/json:
example:
content:
- value: item_status
name: Item Status
schema:
$ref: '#/components/schemas/columnValues'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/query:
get:
operationId: runFqlQuery
description: Runs an FQL query
tags:
- fqlQuery
parameters:
- $ref: '#/components/parameters/fqlQuery'
- $ref: '#/components/parameters/entityTypeIdQueryParam'
- $ref: '#/components/parameters/fields'
- $ref: '#/components/parameters/afterId'
- $ref: '#/components/parameters/limit'
responses:
'200':
description: Query result
content:
application/json:
example:
content:
- id:
type: object
item_status:
type: object
totalRecords: 1
schema:
$ref: '#/components/schemas/resultsetPage'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
post:
operationId: runFqlQueryAsync
description: Runs an FQL query asynchronously
tags:
- fqlQuery
requestBody:
description: Query request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/submitQuery'
responses:
'200':
description: 'The identifier for the query run'
content:
application/json:
example:
queryId: 37140576-be84-1a0e-7546-0912d8320019
schema:
$ref: '#/components/schemas/queryIdentifier'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/query/{queryId}:
get:
operationId: getQuery
description: Get details of a submitted query, optionally including the results
tags:
- fqlQuery
parameters:
- $ref: '#/components/parameters/queryId'
- $ref: '#/components/parameters/includeResults'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/limit'
responses:
'200':
description: 'Details of the submitted query'
content:
application/json:
example:
entityTypeId: 0cb79a4c-f7eb-4941-a104-745224ae0292
fqlQuery: user_active == true
queryId: 37140576-be84-1a0e-7546-0912d8320019
startDate: 2023-04-04T21:56:08.673+00:00
status: IN_PROGRESS
schema:
$ref: '#/components/schemas/queryDetails'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
delete:
operationId: deleteQuery
description: Delete a query and its results
tags:
- fqlQuery
parameters:
- $ref: '#/components/parameters/queryId'
responses:
'204':
description: Query has been deleted
'404':
description: Query with id not found
/query/{queryId}/sortedIds:
get:
operationId: getSortedIds
description: Get ids of query results in sorted order
deprecated: true
summary: This endpoint is deprecated and will be removed in a future release
tags:
- fqlQuery
parameters:
- $ref: '#/components/parameters/queryId'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/limit'
responses:
'200':
description: 'Details of the submitted query'
content:
application/json:
schema:
$ref: '#/components/schemas/queryResultIds'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/query/contents:
post:
tags:
- fqlQuery
operationId: getContents
description: get contents for list of ids
requestBody:
description: Contents request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/contentsRequest'
responses:
'200':
description: A page of list contents
content:
application/json:
schema:
$ref: '#/components/schemas/contents'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/query/contents/privileged:
post:
tags:
- fqlQuery
operationId: getContentsPrivileged
description: get contents for list of ids using a specified user proxy
requestBody:
description: Contents request
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/contentsRequest'
responses:
'200':
description: A page of list contents
content:
application/json:
schema:
$ref: '#/components/schemas/contents'
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
components:
parameters:
entityTypeId:
name: entityTypeId
in: path
required: true
description: UUID of the entity type
schema:
$ref: '#/components/schemas/UUID'
entityTypeIdQueryParam:
name: entityTypeId
in: query
required: true
description: UUID of the entity type
schema:
$ref: '#/components/schemas/UUID'
columnName:
name: columnName
in: path
required: true
description: Name of an entity type column
schema:
type: string
search:
name: search
in: query
required: false
description: A search text that can be used to filter column values. If provided, only the values that begins with the given text will be returned in API response.
schema:
type: string
queryId:
name: queryId
in: path
required: true
description: UUID of the query
schema:
$ref: '#/components/schemas/UUID'
includeResults:
name: includeResults
in: query
required: false
description: Indicates if query results should be included in the query details response
schema:
type: boolean
fqlQuery:
name: query
in: query
schema:
type: string
required: true
description: A complete query expressed as a FQL string. It should contain the from part that defines the entity type and the where/criteria part.
fields:
name: fields
in: query
schema:
type: array
items:
type: string
required: false
description: fields to include in the query results
offset:
name: offset
in: query
schema:
type: integer
default: 0
minimum: 0
maximum: 2147483647
required: false
description: Skip over a number of elements by specifying an offset value for the query
limit:
name: limit
in: query
schema:
type: integer
default: 100
minimum: 1
maximum: 2147483647
required: false
description: Limit the number of elements returned in the response
afterId:
name: afterId
in: query
schema:
type: array
items:
type: string
required: false
description: ID of the last element from the previous query
include-hidden:
name: includeHidden
in: query
required: false
description: Include the hidden column in the display
schema:
type: boolean
default: false
schemas:
UUID:
$ref: schemas/common.json#/UUID
entityType:
$ref: schemas/entityType.json#/EntityType
entityDataType:
$ref: schemas/entityDataType.json#/EntityDataType
stringType:
$ref: schemas/entityDataType.json#/StringType
rangedUUIDType:
$ref: schemas/entityDataType.json#/RangedUUIDType
openUUIDType:
$ref: schemas/entityDataType.json#/OpenUUIDType
stringUUIDType:
$ref: schemas/entityDataType.json#/StringUUIDType
numberType:
$ref: schemas/entityDataType.json#/NumberType
integerType:
$ref: schemas/entityDataType.json#/IntegerType
booleanType:
$ref: schemas/entityDataType.json#/BooleanType
dateType:
$ref: schemas/entityDataType.json#/DateType
enumType:
$ref: schemas/entityDataType.json#/EnumType
objectType:
$ref: schemas/entityDataType.json#/ObjectType
objectTypeContainer:
$ref: schemas/entityDataType.json#/ObjectTypeContainer
nestedObjectProperty:
$ref: schemas/entityDataType.json#/NestedObjectProperty
arrayType:
$ref: schemas/entityDataType.json#/ArrayType
jsonbArrayType:
$ref: schemas/entityDataType.json#/JsonbArrayType
entityTypeDefaultSort:
$ref: schemas/entityTypeDefaultSort.json
errors:
$ref: schemas/error/errors.json
error:
$ref: schemas/error/error.json
parameters:
$ref: schemas/error/parameters.json
parameter:
$ref: schemas/error/parameter.json
resultsetPage:
$ref: schemas/resultset.json#/ResultsetPage
queryDetails:
$ref: schemas/query.json#/QueryDetails
queryIdentifier:
$ref: schemas/query.json#/QueryIdentifier
columnValues:
$ref: schemas/columnValues.json
submitQuery:
$ref: schemas/query.json#/SubmitQuery
contentsRequest:
$ref: schemas/query.json#/ContentsRequest
fqmMigrateRequest:
$ref: schemas/fqmMigrateRequest.json
fqmMigrateResponse:
$ref: schemas/fqmMigrateResponse.json
queryResultIds:
type: array
items:
type: array
items:
type: string
fields:
type: array
items:
type: string
contents:
type: array
items:
type: object
additionalProperties:
type: object
responses:
badRequestResponse:
description: Bad request errors
content:
application/json:
schema:
$ref: '#/components/schemas/errors'
internalServerErrorResponse:
description: When unhandled exception occurred during code execution, e.g. NullPointerException
content:
application/json:
example:
errors:
- message: Unexpected error
code: unexpected.error
total_records: 1
schema:
$ref: '#/components/schemas/errors'