docs for ImportServiceInterface::importEntityListData() need more detail

Created on 11 February 2025, about 2 months ago

Problem/Motivation

The docs for ImportServiceInterface::importEntityListData() say:

   * @param array $entity_list_data
   *   An array of data from a JSON:API endpoint.

This could do to be clearer. The name of the method makes you think that it's only for data from a listing endpoint, but in fact, in the implementation, the call to EntityShareUtility::prepareData() is for ensuring that if $data is the data from a single entity endpoint, it works too.

Steps to reproduce

Proposed resolution

Document that the data can be from either a listing or a single entity endpoint (using the proper JSONAPI terms for these two things, which I can't remember :) )

Remaining tasks

User interface changes

API changes

Data model changes

📌 Task
Status

Active

Version

3.0

Component

Documentation

Created by

🇬🇧United Kingdom joachim

Live updates comments and jobs are added and updated live.
  • Novice

    It would make a good project for someone who is new to the Drupal contribution process. It's preferred over Newbie.

Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @joachim
  • 🇫🇷France guilhxm Paris

    The documentation for ImportServiceInterface::importEntityListData() should clarify that it supports both :

    • A collection of entities from a listing endpoint.
    • A single entity from an individual resource endpoint.

    To improve clarity, I propose updating the PHPDoc like this :

    /**
     * Imports entity data from a JSON:API endpoint.
     *
     * This method can handle both:
     * - A collection of entities from a listing endpoint.
     * - A single entity from an individual resource endpoint.
     *
     * @param array $entity_list_data
     *   An array containing JSON:API data. This can be either:
     *   - A collection of entities (data from a listing endpoint).
     *   - A single entity (data from an individual entity endpoint).
     */
    

    This update explicitly mentions that both types of JSON:API data structures are supported, making it clearer.

  • 🇫🇷France guilhxm Paris

    guilhxm changed the visibility of the branch entity_share-3505800/3505800-add-documentation to hidden.

  • 🇫🇷France guilhxm Paris

    guilhxm changed the visibility of the branch entity_share-3505800/3505800-add-documentation to active.

Production build 0.71.5 2024