docs: enhance how references are generated (#5805)
* adjusted configurations * enhancements to tool and configurations * change reference in docs * fixed issue in workflows reference * added project name * more optimizations * fix context error * added a types reference * resolved missing types * fix reference reflection types not having children * add an expand url parameter * added new option to the README * added details about new option
This commit is contained in:
+36
@@ -0,0 +1,36 @@
|
||||
---
|
||||
displayed_sidebar: homepage
|
||||
---
|
||||
|
||||
import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
|
||||
# AdminGetCollectionsPaginationParams
|
||||
|
||||
Parameters used to configure the pagination of the retrieved product collections.
|
||||
|
||||
## constructor
|
||||
|
||||
___
|
||||
|
||||
## Properties
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "limit",
|
||||
"type": "`number`",
|
||||
"description": "Limit the number of items returned in the list.",
|
||||
"optional": false,
|
||||
"defaultValue": "10",
|
||||
"expandable": false,
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"name": "offset",
|
||||
"type": "`number`",
|
||||
"description": "The number of items to skip when retrieving a list.",
|
||||
"optional": false,
|
||||
"defaultValue": "0",
|
||||
"expandable": false,
|
||||
"children": []
|
||||
}
|
||||
]} expandUrl="https://docs.medusajs.com/development/entities/repositories#retrieving-a-list-of-records"/>
|
||||
Reference in New Issue
Block a user