Good afternoon,
With the change to workflows, we have a component in our data pipeline that is failing. We use the following query
query getReviewByDatarowId($row_id: ID!){
dataRow(where:{ id: $row_id }) {
id
rowData
externalId
dataset {
id
}
labels {
id
secondsToLabel
createdBy {
email
}
createdAt
updatedAt
label
reviews {
createdBy {
email
}
score
}
project {
name
id
}
}
dataset {
name
}
}
}
I took a look at the dataRow docs for GraphQL, but it seems like there isnt an attribute for finding the workflow_info. Any help with this would be great