query: {
    capitalIssues: [{
        filter: Variable<"CapitalIssueFilter", "filter">;
        options: Variable<"PaginationInput", "options">;
    }, {
        currentPage: boolean;
        items: {
            _created_at: boolean;
            _id: boolean;
            _updated_at: boolean;
            block_num: boolean;
            created_by: boolean;
            creators: boolean;
            cycle_id: boolean;
            description: boolean;
            estimate: boolean;
            id: boolean;
            issue_hash: boolean;
            metadata: boolean;
            permissions: {
                can_change_status: boolean;
                can_delete_issue: boolean;
                can_edit_issue: boolean;
                can_set_done: boolean;
                can_set_on_review: boolean;
                has_clearance: boolean;
                is_guest: boolean;
            };
            present: boolean;
            priority: boolean;
            project_hash: boolean;
            sort_order: boolean;
            status: boolean;
            submaster: boolean;
            title: boolean;
        };
        totalCount: boolean;
        totalPages: boolean;
    }];
} = ...

Получение всех задач с фильтрацией

Type declaration

  • capitalIssues: [{
        filter: Variable<"CapitalIssueFilter", "filter">;
        options: Variable<"PaginationInput", "options">;
    }, {
        currentPage: boolean;
        items: {
            _created_at: boolean;
            _id: boolean;
            _updated_at: boolean;
            block_num: boolean;
            created_by: boolean;
            creators: boolean;
            cycle_id: boolean;
            description: boolean;
            estimate: boolean;
            id: boolean;
            issue_hash: boolean;
            metadata: boolean;
            permissions: {
                can_change_status: boolean;
                can_delete_issue: boolean;
                can_edit_issue: boolean;
                can_set_done: boolean;
                can_set_on_review: boolean;
                has_clearance: boolean;
                is_guest: boolean;
            };
            present: boolean;
            priority: boolean;
            project_hash: boolean;
            sort_order: boolean;
            status: boolean;
            submaster: boolean;
            title: boolean;
        };
        totalCount: boolean;
        totalPages: boolean;
    }]