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