[RFC] GraphQL API for long-running tasks

enum Status {
    Queued
    Running
    Error
    Success
}

I have implemented a state machine solution for orchestrating through a sequence of tasks in the MDM demo. It’s a fairly easy to configure and reusable solution. Here is the post.