For each Content Type display number of nodes that have value on each CT's fields

Created on 1 April 2024, about 1 year ago

Problem/Motivation

Sometimes is good to know if a field is used or not. I would be great to have a report for each content type that displays all content types fields with the number of nodes that use that field. Similar to "Node report" (/admin/reports/xray-audit/queries_data/queries_data_node-node_by_types) but for fields.

Proposed resolution

Remaining tasks

User interface changes

A new report will be added.

API changes

Data model changes

✨ Feature request
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡ͺπŸ‡ΈSpain tunic Madrid

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @tunic
  • πŸ‡ͺπŸ‡ΈSpain tunic Madrid

    Just for reference, this code returns the nodes of a certain content type that have value (not null) on a given field:

    
    $ct_name = "theContentType";
    $field_name = "theField";
    $node_storage = \Drupal::entityTypeManager()->getStorage('node');
    
    $nids = $node_storage->getQuery()->condition($field_name, NULL, "IS NOT NULL")->condition("type", $ct_name)->execute();
    
    $nodes = $node_storage->loadMultiple($nids);
    
  • πŸ‡ͺπŸ‡ΈSpain tunic Madrid

    Why do this only for nodes when we can do it for all fieldable entities?

  • πŸ‡ͺπŸ‡ΈSpain tunic Madrid
  • πŸ‡ͺπŸ‡ΈSpain lpeidro Madrid

    Hello @Tuni, yes, this is indeed a very interesting and useful functionality for detecting fields that are not in use and thus being able to simplify the content architecture.

    I just want to add a clarification to the description of the functionality: in a first iteration, at least, this check should be performed only on fields that are not basic fields of the entity. Since these are the fields that can be eliminated, and also we would reduce the amount of information in the report, resulting in something more manageable and useful.

  • πŸ‡ͺπŸ‡ΈSpain tunic Madrid

    Ok to start with fields that are not basic fields of entities.

  • πŸ‡ͺπŸ‡ΈSpain tunic Madrid
  • Assigned to lpeidro
  • πŸ‡ͺπŸ‡ΈSpain lpeidro Madrid

    Status

    First approach completed.

    It has been implemented for the case of nodes. However, it would be advisable to implement a batch process since these queries might take some time. In the end, we performed an accounting of the usage of all fields.

    It might be worthwhile to create another report from the perspective of the storage

  • First commit to issue fork.
  • Pipeline finished with Success
    about 2 months ago
    Total: 288s
    #429342
  • πŸ‡ΊπŸ‡ΈUnited States mortona2k Seattle

    I rebased the branch onto dev.

    The report is working for me and I find it useful as is.

    As an additional feature request, I'd like to see a % of content per bundle that has the field value. That can be a little more meaningful than the counts alone.

  • πŸ‡ͺπŸ‡ΈSpain lpeidro Madrid

    Hello Mortona:

    Thank you very much for your collaboration. Yes, it is a good idea to show a statistic about the field usage.

    We will include that information.

  • πŸ‡ͺπŸ‡ΈSpain lpeidro Madrid
  • Pipeline finished with Success
    about 1 month ago
    Total: 147s
    #437107
  • Pipeline finished with Success
    27 days ago
    Total: 179s
    #444218
  • Pipeline finished with Success
    27 days ago
    Total: 397s
    #444231
  • πŸ‡ͺπŸ‡ΈSpain antonio.nunez Spain

    antonio.nunez β†’ made their first commit to this issue’s fork.

  • πŸ‡ͺπŸ‡ΈSpain antonio.nunez Spain

    The way nodes are counted has been optimized, and the query has been modified to avoid errors from non-existing fields or tables.

Production build 0.71.5 2024