feat(ui) Finalize support for all entity types on forms (#10915)

This commit is contained in:
Chris Collins 2024-07-15 15:14:15 -04:00 committed by GitHub
parent 8967db0de7
commit 36fd614e3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 23 additions and 0 deletions

View File

@ -1254,6 +1254,7 @@ export const glossaryNode5 = {
export const sampleTag = {
urn: 'urn:li:tag:abc-sample-tag',
type: EntityType.Tag,
name: 'abc-sample-tag',
description: 'sample tag description',
ownership: {

View File

@ -1,6 +1,7 @@
query getContainer($urn: String!) {
container(urn: $urn) {
urn
type
exists
lastIngested
platform {

View File

@ -1,5 +1,7 @@
query getDashboard($urn: String!) {
dashboard(urn: $urn) {
urn
type
...dashboardFields
privileges {
...entityPrivileges

View File

@ -1,5 +1,7 @@
query getDataJob($urn: String!) {
dataJob(urn: $urn) {
urn
type
...dataJobFields
privileges {
...entityPrivileges

View File

@ -1,5 +1,7 @@
query getDataPlatform($urn: String!) {
dataPlatform(urn: $urn) {
urn
type
...platformFields
}
}

View File

@ -1,5 +1,7 @@
query getDataProduct($urn: String!) {
dataProduct(urn: $urn) {
urn
type
...dataProductFields
privileges {
...entityPrivileges

View File

@ -1,6 +1,7 @@
query getDataProfiles($urn: String!, $limit: Int, $startTime: Long, $endTime: Long) {
dataset(urn: $urn) {
urn
type
datasetProfiles(limit: $limit, startTimeMillis: $startTime, endTimeMillis: $endTime) {
rowCount
columnCount

View File

@ -1,5 +1,7 @@
query getMLFeature($urn: String!) {
mlFeature(urn: $urn) {
urn
type
...nonRecursiveMLFeature
privileges {
...entityPrivileges

View File

@ -1,5 +1,7 @@
query getMLFeatureTable($urn: String!) {
mlFeatureTable(urn: $urn) {
urn
type
...nonRecursiveMLFeatureTable
privileges {
...entityPrivileges

View File

@ -1,5 +1,7 @@
query getMLModel($urn: String!) {
mlModel(urn: $urn) {
urn
type
...nonRecursiveMLModel
features: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
start

View File

@ -1,5 +1,7 @@
query getMLModelGroup($urn: String!) {
mlModelGroup(urn: $urn) {
urn
type
...nonRecursiveMLModelGroupFields
incoming: relationships(
input: {

View File

@ -1,5 +1,7 @@
query getMLPrimaryKey($urn: String!) {
mlPrimaryKey(urn: $urn) {
urn
type
...nonRecursiveMLPrimaryKey
privileges {
...entityPrivileges

View File

@ -1,6 +1,7 @@
query getTag($urn: String!) {
tag(urn: $urn) {
urn
type
name
description
properties {

View File

@ -1,6 +1,7 @@
query getUser($urn: String!, $groupsCount: Int!) {
corpUser(urn: $urn) {
urn
type
username
isNativeUser
exists