Offers class
속성
client |
메서드
query(Sql |
모든 제품을 쿼리합니다. |
query<T>(Sql |
모든 제품을 쿼리합니다. |
read |
모든 제품을 읽습니다. 예제 배열에 대한 모든 제안을 읽습니다.
|
속성 세부 정보
client
메서드 세부 정보
query(SqlQuerySpec, FeedOptions)
모든 제품을 쿼리합니다.
function query(query: SqlQuerySpec, options?: FeedOptions): QueryIterator<any>
매개 변수
- query
- SqlQuerySpec
작업에 대한 쿼리 구성입니다. 쿼리를 구성하는 방법에 대한 자세한 내용은 를 참조하세요 SqlQuerySpec .
- options
- FeedOptions
반환
QueryIterator<any>
query<T>(SqlQuerySpec, FeedOptions)
모든 제품을 쿼리합니다.
function query<T>(query: SqlQuerySpec, options?: FeedOptions): QueryIterator<T>
매개 변수
- query
- SqlQuerySpec
작업에 대한 쿼리 구성입니다. 쿼리를 구성하는 방법에 대한 자세한 내용은 를 참조하세요 SqlQuerySpec .
- options
- FeedOptions
반환
readAll(FeedOptions)
모든 제품을 읽습니다.
예제
배열에 대한 모든 제안을 읽습니다.
const {body: offerList} = await client.offers.readAll().fetchAll();
function readAll(options?: FeedOptions): QueryIterator<OfferDefinition & Resource>
매개 변수
- options
- FeedOptions