Skip to content

Commit

Permalink
fixed typo in docs regarding **properties.created**
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesvidler committed Jan 20, 2020
1 parent 28f5746 commit 47431d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/methods/getContentList.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {buildPathUrl, buildRequestUrlPath, buildAuthHeader } from '../utils'
* @param {number} [requestParams.contentLinkDepth] - The depth, representing the levels in which you want linked content auto-resolved. Default is 1.
* @param {number} [requestParams.take] - The maximum number of items to retrieve in this request. Default is **10**. Maximum allowed is **50**.
* @param {number} [requestParams.skip] - The number of items to skip from the list. Default is **0**. Used for implementing pagination.
* @param {string} [requestParams.sort] - The field to sort the results by. Example *fields.title* or *properties.created*.
* @param {string} [requestParams.sort] - The field to sort the results by. Example *fields.title* or *properties.modified*.
* @param {AgilityFetch.Types.SortDirection} [requestParams.direction] - The direction to sort the results by.
* @param {Array.<AgilityFetch.Types.Filter>} [requestParams.filters] - The collection of filters to filter the results by.
* @param {AgilityFetch.Types.FilterLogicOperator} [requestParams.filtersLogicOperator] - The logic operator to combine multiple filters.
Expand All @@ -28,7 +28,7 @@ import {buildPathUrl, buildRequestUrlPath, buildAuthHeader } from '../utils'
* languageCode: 'en-us',
* take: 50,
* skip: 0,
* sort: 'properties.created',
* sort: 'properties.modified',
* direction: api.types.SortDirections.ASC
* })
* .then(function(contentList) {
Expand Down

0 comments on commit 47431d3

Please sign in to comment.