For example, I have a survey with a list of questions that are pulled from a table. I want my survey record to end up with a list of answers, each of which should be associated with a question record. Here’s a look at an example based on my schema.
Survey
- title
- answers - should be list of answers
- dateCompleted
Question
- questionText
Answer
- question
- answerText
I can display a list of questions (pulled directly from the Question table), with inputs, for the user to complete, on a page that has a Survey content type. I cannot, however, figure out how to save this dynamic set of answer inputs into a list of Answer types in the Survey record.
Any help would be extremely appreciated! Thank you!
Honey