I triggered MP using below query:
mutation startMonitoring {
runMonitoringProject(projectId: "89b662a3-8ece-409f-b523-01aeba8240a2",
partitionSettings: t
{
catalogItemId: "7c4993f7-bb8c-4885-a4e5-d3930d043f8e",
partitionType: LATEST
}
]
) {
loadMonitoringProjectId
}
}
How do I get the status of this MP whether it is failed, passed?
I want to trigger another API query once this MP is finished. For this I need to get the status as response of this MP run.
Any help on this?