Hi, I have a question about Domains, is it possibl...
# troubleshoot
r
Hi, I have a question about Domains, is it possible to know which domain an entity is associated to (using query)? I though this should be the solution for "container" entity for example but it doesn't give me the donain's urn.
Copy code
... on Container {
                  	domain {
                      associatedUrn
                    }
📖 1
🔍 1
1
l
Hey there 👋 I'm The DataHub Community Support bot. I'm here to help make sure the community can best support you with your request. Let's double check a few things first: ✅ There's a lot of good information on our docs site: www.datahubproject.io/docs, Have you searched there for a solution? ✅ button ✅ It's not uncommon that someone has run into your exact problem before in the community. Have you searched Slack for similar issues? ✅ button Did you find a solution to your issue? ❌ Sorry you weren't able to find a solution. I'm sending you some tips on info you can provide to help the community troubleshoot. Whenever you feel your issue is solved, please react ✅ to your original message to let us know!
f
Can you try:
Copy code
... on Container {
  domain {
    domain {
      urn
    }
  }
}