Hello everyone,
I'm trying to create an AQL filter in Jira Assets that will show me all objects that have an inbound reference from a specific user.
For example, I want to find all Laptops that are referenced by an object with the name "Lucas de Souza".
I've tried using this filter, but it doesn't seem to work correctly:
objectType = "Laptops" AND inboundReferences(Name = "Lucas de Souza")
The goal is to get a list of all objects referenced by "Lucas de Souza" across our Assets schema.
Can anyone help me with the correct AQL syntax for this? I'd appreciate any guidance or examples you could provide.
Thank you!
You've got Inbound references on your script, but on your Laptops screenshot you've got Outbound references.
So i'd edit your query and point it in the other direction.
objectType = "Laptops" AND outboundReferences(Name = "Lucas de Souza")
This way you're looking for laptops that reference a User, not a User who references a Laptop.
Can you provide some more details, based on screen shots of an laptops object?
Also is this attribute Name an reference to another object in the schema or another schema or another type of attribute?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Marc -Devoteam- Thank you for your reply.
So I would like to get all the Laptop, Monitors, and Phones which has the Outbound References to my user in another schema.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.