class IncludedData in JSON:API 8.2
Represents the included member of a JSON:API document.
@internal JSON:API maintains no PHP API. The API is the HTTP API. This class may change at any time and could break any dependencies on it.
Hierarchy
- class \Drupal\jsonapi\JsonApiResource\Data implements \Drupal\jsonapi\JsonApiResource\IteratorAggregate, \Drupal\jsonapi\JsonApiResource\Countable
- class \Drupal\jsonapi\JsonApiResource\ResourceObjectData
- class \Drupal\jsonapi\JsonApiResource\IncludedData
- class \Drupal\jsonapi\JsonApiResource\ResourceObjectData
Expanded class hierarchy of IncludedData
See also
https://www.drupal.org/project/jsonapi/issues/3032787
2 files declare their use of IncludedData
- EntityResource.php in src/
Controller/ EntityResource.php - IncludeResolver.php in src/
IncludeResolver.php
File
- src/
JsonApiResource/ IncludedData.php, line 17
Namespace
Drupal\jsonapi\JsonApiResourceView source
class IncludedData extends ResourceObjectData {
/**
* IncludedData constructor.
*
* @param \Drupal\jsonapi\JsonApiResource\ResourceObject[]|\Drupal\jsonapi\Exception\EntityAccessDeniedHttpException[] $data
* Resource objects that are the primary data for the response.
*
* @see \Drupal\jsonapi\JsonApiResource\Data::__construct
*/
public function __construct($data) {
assert(Inspector::assertAllObjects($data, ResourceObject::class, EntityAccessDeniedHttpException::class));
parent::__construct($data, -1);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Data:: |
protected | property | The number of resources permitted in this collection. | |
Data:: |
protected | property | Holds the total count of entities. | |
Data:: |
protected | property | Various representations of JSON:API objects. | |
Data:: |
protected | property | Holds a boolean indicating if there is a next page. | |
Data:: |
public | function | Returns the number of entities. | |
Data:: |
public static | function | Returns a new, deduplicated Data object. | |
Data:: |
public | function | Gets the cardinality of this collection. | |
Data:: |
public | function | Returns an iterator for entities. | |
Data:: |
public | function | ||
Data:: |
public | function | Checks if there is a next page in the collection. | |
Data:: |
public static | function | Returns a new Data object containing the entities of $this and $other. | |
Data:: |
public | function | Sets the has next page flag. | |
Data:: |
public | function | ||
Data:: |
public | function | Returns the collection as an array. | |
IncludedData:: |
public | function |
IncludedData constructor. Overrides ResourceObjectData:: |
1 |
ResourceObjectData:: |
public | function | Gets only data to be exposed. | |
ResourceObjectData:: |
public | function | Gets only data to be omitted. |