Hello,
is there any way to perform an IQL query on multiple object schema?
I have objects on one Object Schema that are related to multiple objects in different Object Schema like this:
I would like to be able to perform a query that finds all objects connected to e.g. Object A1
this type of query is very important for my company, any help is greatly appreciated.
thank you
The only way I know is to use a groovy script:
import com.atlassian.jira.component.ComponentAccessor
import com.riadalabs.jira.plugins.insight.channel.external.api.facade.IQLFacade
IQLFacade iqlFacade = ComponentAccessor.getOSGiComponentInstanceOfType(IQLFacade)
def iql = 'object having inR(objectType="Object A1") OR object having outR(objectType="Object A1"))'
iqlFacade.findObjects(iql)*.objectKey
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.