Hi team! A new ownership type URN created looks li...
# advice-metadata-modeling
q
Hi team! A new ownership type URN created looks like this -->
'urn:li:ownershipType:gegeiniew-5876-4338-bd42-98f202gh20hg20h
Is there an API method to fetch the existing ownership types?
1
d
Hi, something like this would work :
Copy code
{
  listOwnershipTypes(
    input: {start: 0, count: 100, query: ""}
  ) {
    total
    ownershipTypes {
      type 
      urn
      info {
        name
        description
      }
    }
  }
}