-
Type:
Suggestion
-
Resolution: Unresolved
-
Component/s: Assets - Service, performance, functionality
-
None
-
1
-
2
Problem
The Inbound references and Outbound references sections(under Linked objects panel) in the object view show the reference count as 99+ if/when the reference count is greater than 99
Suggested Solution
The reference count should show the actual count of the references
Why This Is Important
- Creates ambiguity about the correct count
- Lacks visibility about all the references for that object
Workaround
Run AQL query to find the references. You'll need to use the inboundReferences and outboundReferences functions as mentioned in Combining references, functions and AQL
- Navigate to the object type of the inbound or outbound reference
- Run the AQL query:
object HAVING outboundReferences(Key = <object key>, referenceType IN (<reference type name>))
object key: The object key of the object that shows the 99+ reference count
An example AQL query:
object HAVING outboundReferences(Key = SAAS-3043, referenceType IN ("Has license of"))