Hey Team, I found Dashboard entity has one aspect ...
# troubleshoot
r
Hey Team, I found Dashboard entity has one aspect
domains
which indicate one dashboard could belongs to multiple domains. However, in the GraphQL schema definition, Dashboard entity only has one domain? Is this on purpose?
b
Yes 🙂
This is in case we need a multiple domain world in the future, we wouldn't need to migrate the data on disk.
It's a future-proofing optimization, even though functionally DataHub today only supports 1 domain-per-entity.
r
Therefore, I should make the domain field a list in graphql schema for my new entity?
b
No. At the "app + public api layer" (graphql + ui), we currently only support 1 domain per entity.
r
got it. Thanks!