Skip to main content

I am able to fetch all the rule details like name, label, id, stewardship etc. But I am unable to get the dimension of the rule. I don’t find any entity relation between rule and DQ dimension.
 

Could anyone please help me on this?

Hi ​@Hanish N .

Does the following help?

query getRulesWithDqDimension {
rules(
versionSelector: {publishedVersion: true}
) {
edges {
node {
gid
publishedVersion {
name
description
implementation {
storedVersion {
dqDimension {
gid
storedVersion {
_displayName
}
type
}
}
}
}
}
}
}
}

If you’re looking for something else, please provide some more details.

Kind regards,
Adrian


Thanks ​@Adrian Anderson  for your response. It definitely helps me.


Reply