public function Relationship::getFieldName in Drupal 9
Same name and namespace in other branches
- 8 core/modules/jsonapi/src/JsonApiResource/Relationship.php \Drupal\jsonapi\JsonApiResource\Relationship::getFieldName()
Gets the relationship object's public field name.
Return value
string The relationship's field name.
File
- core/
modules/ jsonapi/ src/ JsonApiResource/ Relationship.php, line 148
Class
- Relationship
- Represents references from one resource object to other resource object(s).
Namespace
Drupal\jsonapi\JsonApiResourceCode
public function getFieldName() {
return $this->fieldName;
}