mirror of
https://github.com/strapi/strapi.git
synced 2025-11-03 11:25:17 +00:00
Add CM documentation for getAvailable, getExisting and numberOfDraftRelations
This commit is contained in:
parent
f2ebba0557
commit
2f8a9cd1a0
@ -230,9 +230,14 @@ paths:
|
|||||||
post:
|
post:
|
||||||
tags:
|
tags:
|
||||||
- Relational fields
|
- Relational fields
|
||||||
description: Fetch list of possible related content
|
description: Get available entries to add to a relational field
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: '#/components/parameters/model'
|
- in: path
|
||||||
|
name: model
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
description: Content type uid or component uid depending on what holds the relation
|
||||||
- in: path
|
- in: path
|
||||||
name: targetField
|
name: targetField
|
||||||
schema:
|
schema:
|
||||||
@ -240,20 +245,42 @@ paths:
|
|||||||
required: true
|
required: true
|
||||||
description: Name of the field in the model that holds the relation
|
description: Name of the field in the model that holds the relation
|
||||||
- in: query
|
- in: query
|
||||||
name: _component
|
name: entityId
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
description: Component uid if the targetField is in a component
|
description: Id of the entry or the component, used to omit already existing relations (if the entity already exists)
|
||||||
requestBody:
|
- in: query
|
||||||
content:
|
name: idsToOmit
|
||||||
application/json:
|
schema:
|
||||||
schema:
|
type: array
|
||||||
type: object
|
items:
|
||||||
properties:
|
type: string
|
||||||
idsToOmit:
|
name: id
|
||||||
type: array
|
description: Used to omit ids of client-side selected relations (for entities that haven’t been created in the DB yet)
|
||||||
items:
|
- in: query
|
||||||
$ref: '#/components/schemas/id'
|
name: idsToInclude
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
name: id
|
||||||
|
description: Used to include ids of client-side unselected relations (for entities that haven’t been removed from the DB yet)
|
||||||
|
- in: query
|
||||||
|
name: _q
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
description: Search among the available relations (against the main field only)
|
||||||
|
- in: query
|
||||||
|
name: page
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
description: Page number to fetch
|
||||||
|
- in: query
|
||||||
|
name: pageSize
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
description: Page size to fetch
|
||||||
|
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: Returns a list of sanitized entries based of the relational attribute info
|
description: Returns a list of sanitized entries based of the relational attribute info
|
||||||
@ -264,23 +291,105 @@ paths:
|
|||||||
items:
|
items:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
id:
|
results:
|
||||||
$ref: '#/components/schemas/id'
|
type: array
|
||||||
'[primaryKey]':
|
items:
|
||||||
oneOf:
|
type: object
|
||||||
- type: string
|
properties:
|
||||||
- type: integer
|
id:
|
||||||
'[mainField]':
|
$ref: '#/components/schemas/id'
|
||||||
type: string
|
'[mainField]':
|
||||||
description: Value of the mainField of the entry
|
type: string
|
||||||
publishedAt:
|
description: Value of the mainField of the entry
|
||||||
type: date
|
publishedAt:
|
||||||
|
type: date
|
||||||
|
pagination:
|
||||||
|
$ref: '#/components/schemas/pagination'
|
||||||
|
|
||||||
|
/content-manager/relations/{model}/{id}/{targetField}:
|
||||||
|
post:
|
||||||
|
tags:
|
||||||
|
- Relational fields
|
||||||
|
description: Get existing entries for a relational field of an entry
|
||||||
|
parameters:
|
||||||
|
- in: path
|
||||||
|
name: model
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
description: Content type uid or component uid depending on what holds the relation
|
||||||
|
- in: path
|
||||||
|
name: id
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
description: Id of the entity (entry or component) that holds the relation
|
||||||
|
- in: path
|
||||||
|
name: targetField
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
description: Name of the field in the model that holds the relation
|
||||||
|
- in: query
|
||||||
|
name: page
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
description: Page number to fetch
|
||||||
|
- in: query
|
||||||
|
name: pageSize
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
description: Page size to fetch
|
||||||
|
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: Returns a list of sanitized entries based of the relational attribute info
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
oneOf:
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
results:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
$ref: '#/components/schemas/id'
|
||||||
|
'[mainField]':
|
||||||
|
type: string
|
||||||
|
description: Value of the mainField of the entry
|
||||||
|
publishedAt:
|
||||||
|
type: date
|
||||||
|
pagination:
|
||||||
|
$ref: '#/components/schemas/pagination'
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
data:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
$ref: '#/components/schemas/id'
|
||||||
|
'[mainField]':
|
||||||
|
type: string
|
||||||
|
description: Value of the mainField of the entry
|
||||||
|
publishedAt:
|
||||||
|
type: date
|
||||||
|
|
||||||
# Collection type
|
# Collection type
|
||||||
/content-manager/collection-types/{model}:
|
/content-manager/collection-types/{model}:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
- Collection Types content management
|
- Collection Types content management
|
||||||
description: Get a list of entries
|
description: |
|
||||||
|
Get a list of entries
|
||||||
|
|
||||||
|
All components and dynamic zones along with relations (1 level only) are automatically populated.
|
||||||
|
|
||||||
|
xToMany relations are counted (exemple: { count: 4 }).
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: '#/components/parameters/model'
|
- $ref: '#/components/parameters/model'
|
||||||
responses:
|
responses:
|
||||||
@ -342,7 +451,12 @@ paths:
|
|||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
- Collection Types content management
|
- Collection Types content management
|
||||||
description: Get one entry
|
description: |
|
||||||
|
Get one entry
|
||||||
|
|
||||||
|
All components and dynamic zones along with relations (1 level only) are automatically populated.
|
||||||
|
|
||||||
|
All relations are counted (exemple: { count: 4 }).
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: '#/components/parameters/model'
|
- $ref: '#/components/parameters/model'
|
||||||
- $ref: '#/components/parameters/entity-id'
|
- $ref: '#/components/parameters/entity-id'
|
||||||
@ -421,6 +535,23 @@ paths:
|
|||||||
properties:
|
properties:
|
||||||
publishedAt:
|
publishedAt:
|
||||||
type: datetime
|
type: datetime
|
||||||
|
/content-manager/collection-types/{model}/{id}/actions/numberOfDraftRelations:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- Collection Types content management
|
||||||
|
description: Get the number of relations of that entry that are in draft
|
||||||
|
parameters:
|
||||||
|
- $ref: '#/components/parameters/model'
|
||||||
|
- $ref: '#/components/parameters/entity-id'
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
data:
|
||||||
|
type: integer
|
||||||
# Single type
|
# Single type
|
||||||
/content-manager/single-types/{model}:
|
/content-manager/single-types/{model}:
|
||||||
get:
|
get:
|
||||||
@ -501,13 +632,29 @@ paths:
|
|||||||
publishedAt:
|
publishedAt:
|
||||||
type: datetime
|
type: datetime
|
||||||
nullable: true
|
nullable: true
|
||||||
|
/content-manager/single-types/{model}/actions/numberOfDraftRelations:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- Single Types content management
|
||||||
|
description: Get the number of relations of that entry that are in draft
|
||||||
|
parameters:
|
||||||
|
- $ref: '#/components/parameters/model'
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
data:
|
||||||
|
type: integer
|
||||||
|
|
||||||
components:
|
components:
|
||||||
schemas:
|
schemas:
|
||||||
id:
|
id:
|
||||||
oneOf:
|
oneOf:
|
||||||
- type: string
|
|
||||||
- type: integer
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
|
||||||
pagination:
|
pagination:
|
||||||
type: object
|
type: object
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user