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?
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?
Best answer by Adrian Anderson
Hi
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
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.