@@ -23,6 +23,13 @@ fragment glossaryTerms on GlossaryTerms {
23
23
}
24
24
}
25
25
26
+ fragment deprecationFields on Deprecation {
27
+ actor
28
+ deprecated
29
+ note
30
+ decommissionTime
31
+ }
32
+
26
33
fragment ownershipFields on Ownership {
27
34
owners {
28
35
owner {
@@ -171,12 +178,6 @@ fragment nonRecursiveDatasetFields on Dataset {
171
178
}
172
179
}
173
180
}
174
- deprecation {
175
- actor
176
- deprecated
177
- note
178
- decommissionTime
179
- }
180
181
globalTags {
181
182
... globalTagsFields
182
183
}
@@ -192,6 +193,9 @@ fragment nonRecursiveDatasetFields on Dataset {
192
193
container {
193
194
... entityContainer
194
195
}
196
+ deprecation {
197
+ ... deprecationFields
198
+ }
195
199
}
196
200
197
201
fragment nonRecursiveDataFlowFields on DataFlow {
@@ -222,6 +226,9 @@ fragment nonRecursiveDataFlowFields on DataFlow {
222
226
domain {
223
227
... entityDomain
224
228
}
229
+ deprecation {
230
+ ... deprecationFields
231
+ }
225
232
}
226
233
227
234
fragment nonRecursiveDataJobFields on DataJob {
@@ -241,6 +248,9 @@ fragment nonRecursiveDataJobFields on DataJob {
241
248
domain {
242
249
... entityDomain
243
250
}
251
+ deprecation {
252
+ ... deprecationFields
253
+ }
244
254
}
245
255
246
256
fragment dataJobFields on DataJob {
@@ -288,6 +298,9 @@ fragment dataJobFields on DataJob {
288
298
domain {
289
299
... entityDomain
290
300
}
301
+ deprecation {
302
+ ... deprecationFields
303
+ }
291
304
}
292
305
293
306
fragment dashboardFields on Dashboard {
@@ -336,6 +349,9 @@ fragment dashboardFields on Dashboard {
336
349
status {
337
350
removed
338
351
}
352
+ deprecation {
353
+ ... deprecationFields
354
+ }
339
355
}
340
356
341
357
fragment nonRecursiveMLFeature on MLFeature {
@@ -373,6 +389,9 @@ fragment nonRecursiveMLFeature on MLFeature {
373
389
status {
374
390
removed
375
391
}
392
+ deprecation {
393
+ ... deprecationFields
394
+ }
376
395
}
377
396
378
397
fragment nonRecursiveMLPrimaryKey on MLPrimaryKey {
@@ -410,6 +429,9 @@ fragment nonRecursiveMLPrimaryKey on MLPrimaryKey {
410
429
status {
411
430
removed
412
431
}
432
+ deprecation {
433
+ ... deprecationFields
434
+ }
413
435
}
414
436
415
437
fragment nonRecursiveMLFeatureTable on MLFeatureTable {
@@ -438,6 +460,9 @@ fragment nonRecursiveMLFeatureTable on MLFeatureTable {
438
460
status {
439
461
removed
440
462
}
463
+ deprecation {
464
+ ... deprecationFields
465
+ }
441
466
}
442
467
443
468
fragment schemaMetadataFields on SchemaMetadata {
@@ -553,6 +578,9 @@ fragment nonRecursiveMLModel on MLModel {
553
578
status {
554
579
removed
555
580
}
581
+ deprecation {
582
+ ... deprecationFields
583
+ }
556
584
}
557
585
558
586
fragment nonRecursiveMLModelGroupFields on MLModelGroup {
@@ -570,6 +598,9 @@ fragment nonRecursiveMLModelGroupFields on MLModelGroup {
570
598
status {
571
599
removed
572
600
}
601
+ deprecation {
602
+ ... deprecationFields
603
+ }
573
604
}
574
605
575
606
fragment platformFields on DataPlatform {
@@ -620,6 +651,9 @@ fragment entityContainer on Container {
620
651
subTypes {
621
652
typeNames
622
653
}
654
+ deprecation {
655
+ ... deprecationFields
656
+ }
623
657
}
624
658
625
659
fragment entityDomain on Domain {
0 commit comments