You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am racking my brain - can someone help?
I have 2 object Types
Organization
Attribute: Orgshort value = Superstore
value = funstore
Directorate
Attribute: Directorate_org (outbound to Organization Object Type)
I am trying to find all Directorates that are part of Organization = Superstore
I've used the following queries and get zero hits...augh
objectType = Directorate AND "Directorate_org"."Orgshort" = Superstore
I've also tried without " " -
objectType = Directorate AND Directorate_org.Orgshort = Superstore
What am I doing wrong?
Hi @Sandra Lawrence,
Have you tried the following:
objectType = Directorate AND Directorate_org = Superstore
assuming that Directorate_org is an attribute of the Directorate object type
Hope this helps!
WooHoo! It worked great! If I may, let me ask you this next-level question:
How would you set up a query if you had 4-levels of Object types you needed information/data from? For example:
I have 4 object Types
Organization has 1:x Directorates which has 1:x Divisions which has 1:x Programs
Organization
Attribute: Orgshort value = Superstore
value = funstore
Directorate
Attribute: Directorate_org (outbound to Organization Object Type)
Division
Attribute: Division_Directorate (outbound to Directorate Object type)
Program
Attribute: Program_Division (outbound to Division object type)
Am I able to write a query that would allow me to see for a selected Organization:
- all Directorates, and within each Directorate, all divisions, and within each Division, see all programs?
Organizaiton A
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is a layout of logic (not necessarily a format):
Organization A
Directorate A
Division A
program a1
program a2
Division B
project b1
Directorate B
Division C
program C1
Division D
program D1
program D2
I am not sure if I can (for lack of a better term) "group" this way in a query. Any guidance would be awesome! Thank you!
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.