Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 1.87 KB

v1searchrequest.md

File metadata and controls

28 lines (23 loc) · 1.87 KB

V1SearchRequest

Example Usage

import { V1SearchRequest } from "@steamsets/client-ts/models/components";

let value: V1SearchRequest = {
  filter: "<value>",
  query: "<value>",
  sort: [
    "price:asc",
    "author:desc",
  ],
};

Fields

Field Type Required Description Example
facets string[] N/A
filter string ✔️ The filter to apply to the search
limit number N/A
offset number N/A
page number N/A
query string ✔️ The query to search for
sort string[] ✔️ sort order [
"price:asc",
"author:desc"
]