Yes, it is. You can use the following Rest call:
GET
http://<atlas-server-host:port>/api/atlas/discovery/search/dsl?query=%60Catalog.Marketing.Customers%...
The JSON Response will be like this:
{
"requestId": string,
"query": trait_name_within_backticks,
"queryType": "dsl",
"count": int,
"results": [{
"$typeName$": "__tempQueryResultStruct...",
"instanceInfo": {
"$typeName$": "__IdType",
"guid": guid of entity associated to trait or term,
"typeName": type of entity associated to trait or term
},
"traitDetails": null
}, ....],
"dataType": {
"typeName": "__tempQueryResultStruct...",
"typeDescription": null,
"attributeDefinitions": [{
"name": "traitDetails",
"dataTypeName": trait or term name,
"multiplicity": {
"lower": 0,
"upper": 1,
"isUnique": false
},
"isComposite": false,
"isUnique": false,
"isIndexable": true,
"reverseAttributeName": null
}, {
"name": "instanceInfo",
"dataTypeName": "__IdType",
"multiplicity": {
"lower": 0,
"upper": 1,
"isUnique": false
},
"isComposite": false,
"isUnique": false,
"isIndexable": true,
"reverseAttributeName": null
}]
}
}
So, you're getting the GUID of the entities associated with your trait.
Best Regards,
Ivan Diaz.