Skip to content

Interface: FindBySortRequest

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Query / FindBySortRequest

Interface: FindBySortRequest

Defined in: src/types/query.ts:250

Request to find terms by sort ID or sort name, with optional filter.

Remarks

Used by POST /api/v1/terms/find-by-sort. Accepts either sort_id (UUID) or sort_name (human-readable name), plus an optional filter object for feature-based filtering.

Properties

filter?

optional filter: Record<string, string> | null

Defined in: src/types/query.ts:256

Optional filter for feature-based filtering.


sortId?

optional sortId: string | null

Defined in: src/types/query.ts:252

Sort UUID to search for.


sortName?

optional sortName: string | null

Defined in: src/types/query.ts:254

Sort name to search for (alternative to sort_id).