共用方式為


Offers class

用來查詢或讀取所有供應專案。

請參閱 Offer 以識別碼讀取或取代現有的 Offer

屬性

client

方法

query(SqlQuerySpec, FeedOptions)

查詢所有供應專案。

query<T>(SqlQuerySpec, FeedOptions)

查詢所有供應專案。

readAll(FeedOptions)

讀取所有供應專案。

範例

讀取要陣列的所有供應專案。

const {body: offerList} = await client.offers.readAll().fetchAll();

屬性詳細資料

client

client: CosmosClient

屬性值

方法詳細資料

query(SqlQuerySpec, FeedOptions)

查詢所有供應專案。

function query(query: SqlQuerySpec, options?: FeedOptions): QueryIterator<any>

參數

query
SqlQuerySpec

作業的查詢組態。 如需如何設定查詢的詳細資訊,請參閱 SqlQuerySpec

options
FeedOptions

傳回

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

傳回