Answers - Standard Card Detail Field

Hi,

I’m creating a new vertical and for the card I’d like the detail to be mapped to two field: Question and Answer. I’ve included screenshots of how I currently have the mapping, as well as the fields in the entity that I’m trying to map to. Currently, nothing is populating in the card.

Additionally, I also tried mapping to profile.question || profile.answer, but didn’t get a result that way either.


Hi Harris,

You can confirm the field names by checking the entity configuration screen. This is where you can check if the field should be called “c_answer” vs “answer”.

The “||” operator will display the first field and if the first field is not populated it will display the second field. It sounds like this is not exactly what you are trying to do.

Try using “+” instead! This will allow you to join fields.

details: (profile.question)
       + (profile.answer),

Hope this helps!

Best,
Melissa

Hi Melissa,

Thanks for explaining how to use two fields for results!

I checked the configuration screen and confirmed the field names are “question” and “answer”, but when I tried inputting:

  details: (profile.question)
          + (profile.answer),

I’m still not getting the fields populated in my live preview.

Thanks for your help!

Hi Harris,

I would recommend checking that you have the correct card selected in the page json file! Perhaps that is the issue.

Best,
Melissa