Use case
Return the first comment of the current issue.
Expression
Create and configure a Smart field using this expression in Jira expression parsing mode:
issue?.comments[0]?.body?.plainText == null ? '' : issue?.comments[0]?.body?.plainText
The text will be returned using wiki markup, e.g. bold text will be shown as *bold text*.