@coopenomics/sdk
    Preparing search index...
    interface IInput {
        filter?: {
            coopname?: string | null;
            has_vote?: boolean | null;
            is_author?: boolean | null;
            is_contributor?: boolean | null;
            is_coordinator?: boolean | null;
            is_creator?: boolean | null;
            is_investor?: boolean | null;
            is_propertor?: boolean | null;
            parent_hash?: string | null;
            project_hash?: string | null;
            status?: SegmentStatus | null;
            username?: string | null;
        };
        options?: {
            limit: number;
            page: number;
            sortBy?: string
            | null;
            sortOrder: string;
        };
    }
    Index

    Properties

    Properties

    filter?: {
        coopname?: string | null;
        has_vote?: boolean | null;
        is_author?: boolean | null;
        is_contributor?: boolean | null;
        is_coordinator?: boolean | null;
        is_creator?: boolean | null;
        is_investor?: boolean | null;
        is_propertor?: boolean | null;
        parent_hash?: string | null;
        project_hash?: string | null;
        status?: SegmentStatus | null;
        username?: string | null;
    }

    Type Declaration

    • Optionalcoopname?: string | null

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

    • Optionalhas_vote?: boolean | null

      Фильтр по наличию права голоса

    • Optionalis_author?: boolean | null

      Фильтр по роли автора

    • Optionalis_contributor?: boolean | null

      Фильтр по роли участника

    • Optionalis_coordinator?: boolean | null

      Фильтр по роли координатора

    • Optionalis_creator?: boolean | null

      Фильтр по роли создателя

    • Optionalis_investor?: boolean | null

      Фильтр по роли инвестора

    • Optionalis_propertor?: boolean | null

      Фильтр по роли пропертора

    • Optionalparent_hash?: string | null

      Фильтр по parent_hash проекта (для фильтрации по проектам верхнего уровня передайте пустой хэш)

    • Optionalproject_hash?: string | null

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

    • Optionalstatus?: SegmentStatus | null

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

    • Optionalusername?: string | 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")