Not sure if this is too simple of a question, but I’ve gotta learn somehow, so here goes.
My users have a field called EpicRecords, which represents a list of EpicUserRecords.
Each EpicUserRecord has an Epic.
Epics are a public data type.
EpicUserRecords also have several user specific fields.
So an EpicUserRecord is a record of a user’s interaction with a common piece of data called an Epic.
When a user opens up an Epic, I want to display their interaction with that Epic by showing the fields within EpicUserRecord, but I don’t know how to filter it properly so that it shows me only the fields from the specific Epic that is open. How might I do that?
A map of the data types:
User:
- EpicRecords [ ]EpicUserRecords
EpicUserRecord:
- Epic
- userSpecificField1 (text)
Epic:
- EpicName (text)
The current page has access to a specific Epic; let’s call it Epic_Being_Viewed. I want the userSpecificField1 where the EpicName from the Epic from the EpicUserRecord is the EpicName of Epic_Being_Viewed.
Any help would be awesome, thanks all