Can we get the metadata of one rule instance. I have been using below query. It is giving all the dq checks. I want to pass only one DQ check ID and get the results.
query{
ruleInstances(versionSelector: {draftVersion: true}){
edges {
node {
gid
draftVersion {
name
displayName,
target
{
gid
}
}
}
}
}
}
Can anyone help me on this?