Query exactly the data you need with GraphQL.
https://api.zenithdata.com/graphqlquery {
asset(id: "table_123") {
name
description
columns {
name
type
tags
}
lineage {
upstream {
name
}
}
}
}mutation {
updateAsset(id: "table_123", input: {
description: "Updated description"
}) {
id
description
}
}Use the GraphQL Playground at /graphql to explore the schema.