Sanity Library Reference Docs
    Preparing search index...
    interface ForMeTaskRow {
        activityName: string;
        assignees: readonly Assignee[];
        assignment: TaskAssignment;
        attention: RunAttention | undefined;
        attentionDetail: RunAttentionDetail | undefined;
        document: GlobalDocumentReference<string> | undefined;
        due: string | undefined;
        id: string;
        instanceId: string;
        openedAt: string;
        releases: readonly string[];
        title: string;
        workflowTitle: string;
    }
    Index

    Properties

    activityName: string
    assignees: readonly Assignee[]

    Everyone the task names, not only the assignment the reader holds it by — the row shows co-assignees, and the role a claimable task sits with.

    assignment: TaskAssignment

    How the reader holds this task. A direct assignment outranks a held role.

    attention: RunAttention | undefined
    attentionDetail: RunAttentionDetail | undefined
    document: GlobalDocumentReference<string> | undefined
    due: string | undefined
    id: string
    instanceId: string
    openedAt: string
    releases: readonly string[]
    title: string
    workflowTitle: string