Commit a8e373e 1 parent 29ca570 commit a8e373e Copy full SHA for a8e373e
File tree 3 files changed +21
-0
lines changed
datahub-web-react/src/graphql
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,11 @@ query getDataPlatform($urn: String!) {
3
3
... platformFields
4
4
}
5
5
}
6
+
7
+ query getDataPlatforms ($urns : [String ! ]! ) {
8
+ entities (urns : $urns ) {
9
+ ... on DataPlatform {
10
+ ... platformFields
11
+ }
12
+ }
13
+ }
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ query listPosts($input: ListPostsInput!) {
7
7
urn
8
8
type
9
9
postType
10
+ lastModified {
11
+ time
12
+ }
10
13
content {
11
14
contentType
12
15
title
Original file line number Diff line number Diff line change @@ -295,6 +295,16 @@ fragment entityPreview on Entity {
295
295
... deprecationFields
296
296
}
297
297
}
298
+ ... on MLFeature {
299
+ name
300
+ description
301
+ ownership {
302
+ ... ownershipFields
303
+ }
304
+ deprecation {
305
+ ... deprecationFields
306
+ }
307
+ }
298
308
... on MLModelGroup {
299
309
name
300
310
origin
You can’t perform that action at this time.
0 commit comments