You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// query method; note that this returns the CosmosDB FeedResponse object because sometimes this extra information is useful
136
-
const userListResponse =awaitusers.findManyByQuery('SELECT * from c where c.type="User"', {ttl, requestOptions}) // => Promise<FeedResponse<T>>
136
+
const userListResponse =awaitusers.findManyByQuery('SELECT * from c where c.type="User"', {ttl, requestOptions, maxItemCount}) // => Promise<FeedResponse<T>>
137
137
console.log(userListResponse.resources) // user array from query
138
138
139
139
// create method returns the CosmosDB ItemResponse object
0 commit comments