2021-07-28 20:39:05 -07:00
|
|
|
query getMLModel($urn: String!) {
|
|
|
|
mlModel(urn: $urn) {
|
2024-07-15 15:14:15 -04:00
|
|
|
urn
|
|
|
|
type
|
2021-07-28 20:39:05 -07:00
|
|
|
...nonRecursiveMLModel
|
2022-04-12 22:42:12 -07:00
|
|
|
features: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
|
2022-12-02 09:51:51 -08:00
|
|
|
start
|
|
|
|
count
|
|
|
|
total
|
|
|
|
relationships {
|
|
|
|
type
|
|
|
|
direction
|
|
|
|
entity {
|
|
|
|
... on MLFeature {
|
|
|
|
...nonRecursiveMLFeature
|
|
|
|
}
|
|
|
|
... on MLPrimaryKey {
|
|
|
|
...nonRecursiveMLPrimaryKey
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
2025-01-29 11:41:56 +09:00
|
|
|
trainedBy: relationships(input: { types: ["TrainedBy"], direction: OUTGOING, start: 0, count: 100 }) {
|
|
|
|
start
|
|
|
|
count
|
|
|
|
total
|
|
|
|
relationships {
|
|
|
|
type
|
|
|
|
direction
|
|
|
|
entity {
|
|
|
|
... on DataProcessInstance {
|
|
|
|
urn
|
|
|
|
name
|
|
|
|
type
|
|
|
|
...dataProcessInstanceFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-20 15:25:36 -04:00
|
|
|
privileges {
|
|
|
|
...entityPrivileges
|
|
|
|
}
|
2024-01-23 16:30:02 -05:00
|
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
|
|
...autoRenderAspectFields
|
|
|
|
}
|
2024-02-08 12:21:05 -05:00
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
2024-02-13 15:02:52 -05:00
|
|
|
forms {
|
|
|
|
...formsFields
|
|
|
|
}
|
2025-01-29 20:42:01 -05:00
|
|
|
...notes
|
2025-01-16 22:56:36 -08:00
|
|
|
...entityProfileVersionProperties
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
|
|
|
}
|