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
* @param {string} requestParams.languageCode - The language code of the content you want to retrieve.
9
9
* @param {number} [requestParams.take] - The maximum number of items to retrieve in this request. Default is **10**. Maximum allowed is **50**.
10
10
* @param {number} [requestParams.skip] - The number of items to skip from the list. Default is **0**. Used for implementing pagination.
11
-
* @param {number} [requestParams.sort] - The field to sort the results by. Example *fields.title* or *properties.created*.
12
-
* @param {number} [requestParams.direction] - The direction to sort the results by. Default is **asc**. Valid values are **asc**, **desc**.
13
-
* @param {string} [requestParams.filter] - *Note: This parameter has not been implemented, but will be in a future version.*
11
+
* @param {string} [requestParams.sort] - The field to sort the results by. Example *fields.title* or *properties.created*.
12
+
* @param {string} [requestParams.direction] - The direction to sort the results by. Default is **asc**. Valid values are **asc**, **desc**.
13
+
* @param {Array} [requestParams.filters] - The collection of filters to filter the results by. A filter object contains properties called **property**, **operator**, **value**. Operators can be **eq** Equal To, **ne** Not Equal To, **gt** Greater Than, **gte** Greater Than or Equal To, **lt * @param {Array} [requestParams.filters] - The collection of filters to filter the results by. A filter object contains properties called **property**, **operator**, **value**. Operators can be **eq** Equal To, **ne** Not Equal To, **gt** Greater Than, **gte** Greater Than or Equal To, **lt** Less Than, **lte** Less Than or Equal To, **like** Like (string only)
14
+
* @param (string) [requestParams.filtersLogicOperator] - The logic operator to combine multiple filters. **AND** (default), **OR**.
14
15
* @returns {Promise<AgilityFetch.Types.ContentList>} - Returns a list of content items.
15
16
* @example
16
17
*
@@ -43,7 +44,7 @@ function getContentList(requestParams) {
0 commit comments