@coopenomics/sdk
    Preparing search index...
    interface IInput {
        filter?: {
            coopname?: string | null;
            has_invite?: boolean | null;
            has_issues_with_creators?: string[] | null;
            has_issues_with_priorities?: IssuePriority[] | null;
            has_issues_with_statuses?: IssueStatus[] | null;
            has_voting?: boolean | null;
            is_component?: boolean | null;
            is_opened?: boolean | null;
            is_planed?: boolean | null;
            master?: string | null;
            parent_hash?: string | null;
            project_hash?: string | null;
            statuses?: ProjectStatus[] | null;
        };
        options?: {
            limit: number;
            page: number;
            sortBy?: string
            | null;
            sortOrder: string;
        };
    }
    Index

    Properties

    Properties

    filter?: {
        coopname?: string | null;
        has_invite?: boolean | null;
        has_issues_with_creators?: string[] | null;
        has_issues_with_priorities?: IssuePriority[] | null;
        has_issues_with_statuses?: IssueStatus[] | null;
        has_voting?: boolean | null;
        is_component?: boolean | null;
        is_opened?: boolean | null;
        is_planed?: boolean | null;
        master?: string | null;
        parent_hash?: string | null;
        project_hash?: string | null;
        statuses?: ProjectStatus[] | null;
    }

    Type Declaration

    • Optionalcoopname?: string | null

      Фильтр по названию кооператива

    • Optionalhas_invite?: boolean | null

      Показывать только проекты, у которых есть установленное значение в поле invite

    • Optionalhas_issues_with_creators?: string[] | null

      Показывать только проекты, у которых есть задачи, созданные указанными пользователями по username

    • Optionalhas_issues_with_priorities?: IssuePriority[] | null

      Показывать только проекты, у которых есть задачи с указанными приоритетами

    • Optionalhas_issues_with_statuses?: IssueStatus[] | null

      Показывать только проекты, у которых есть задачи в указанных статусах

    • Optionalhas_voting?: boolean | null

      Показывать только проекты, у которых есть или были голосования

    • Optionalis_component?: boolean | null

      true - только компоненты проектов, false - только основные проекты

    • Optionalis_opened?: boolean | null

      Фильтр по открытому проекту

    • Optionalis_planed?: boolean | null

      Фильтр по запланированному проекту

    • Optionalmaster?: string | null

      Фильтр по мастеру проекта

    • Optionalparent_hash?: string | null

      Фильтр по хешу родительского проекта

    • Optionalproject_hash?: string | null

      Фильтр по хешу проекта

    • Optionalstatuses?: ProjectStatus[] | null

      Фильтр по статусам проектов

    options?: {
        limit: number;
        page: number;
        sortBy?: string | null;
        sortOrder: string;
    }

    Type Declaration

    • limit: number

      Количество элементов на странице

    • page: number

      Номер страницы

    • OptionalsortBy?: string | null

      Ключ сортировки (например, "name")

    • sortOrder: string

      Направление сортировки ("ASC" или "DESC")