@@ -173,7 +173,7 @@ export class Query extends BaseQuery {
173
173
* import contentstack from '@contentstack/delivery-sdk'
174
174
*
175
175
* const stack = contentstack.Stack({ apiKey: "apiKey", deliveryToken: "deliveryToken", environment: "environment" });
176
- * const query = stack.contentType("contentTypeUid").Query ();
176
+ * const query = stack.contentType("contentTypeUid").entry().query ();
177
177
* const result = containedIn('fieldUid', ['value1', 'value2']).find()
178
178
*
179
179
* @returns {Query }
@@ -191,7 +191,7 @@ export class Query extends BaseQuery {
191
191
* import contentstack from '@contentstack/delivery-sdk'
192
192
*
193
193
* const stack = contentstack.Stack({ apiKey: "apiKey", deliveryToken: "deliveryToken", environment: "environment" });
194
- * const query = stack.contentType("contentTypeUid").Query ();
194
+ * const query = stack.contentType("contentTypeUid").entry().query ();
195
195
* const result = notContainedIn('fieldUid', ['value1', 'value2']).find()
196
196
*
197
197
* @returns {Query }
@@ -209,7 +209,7 @@ export class Query extends BaseQuery {
209
209
* import contentstack from '@contentstack/delivery-sdk'
210
210
*
211
211
* const stack = contentstack.Stack({ apiKey: "apiKey", deliveryToken: "deliveryToken", environment: "environment" });
212
- * const query = stack.contentType("contentTypeUid").Query ();
212
+ * const query = stack.contentType("contentTypeUid").entry().query ();
213
213
* const result = notExists('fieldUid').find()
214
214
*
215
215
* @returns {Query }
0 commit comments