Schema

Scalars

Enums

Objects

Input Objects

CaseStatus (ENUM)

Status of a case, lifecycle runs from open -> running -> completed

Schema Definition

enum CaseStatus {   # A case that has not yet been submitted.
OPEN,    # A case for which all results have returned.
COMPLETED,    # A case for which calculators are running.
RUNNING,  }