I would like to configure Drupal's Search API in that way, that it's possible to index (and search over) an entity type (Person) which is referenced by an paragraph and this paragraph is referenced by another entity type (Article).
That's approx. what I have. Article and Person are content types. Editing an article let's you choose a person in a specific role, which is saved as paragraph. That all work's great so far!
+-----------+
| Paragraph |
+-----------+
+------> ID: 1 | +---------+
+---------+ | | P_ID: 200 <-----+ | Person |
| Article | | | ... | | +---------+
+---------+ | +-----------+ +-----+ ID: 200 |
| ID:100 | | | ... |
| P_ID: 1 +-------+ +---------+
| ... |
+---------+
+--------+------------------+
| Person | Title of Article |
+---------------------------+
| John | T1, T3, T6 |
| Alice | T2 |
| Bob | T4, T5 |
+--------+------------------+
What I like to have is a Search-API search index with person name and the linked articles as a comma-separated list. (There are persons without articles.)
Is that possible to do that with Drupal's Search API? And if yes, how? On which content type do I start? Do I need to use the Reverse reference fields?