Interface: FindBySortRequest
@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?
optionalfilter:Record<string,string> |null
Defined in: src/types/query.ts:256
Optional filter for feature-based filtering.
sortId?
optionalsortId:string|null
Defined in: src/types/query.ts:252
Sort UUID to search for.
sortName?
optionalsortName:string|null
Defined in: src/types/query.ts:254
Sort name to search for (alternative to sort_id).