1.) I have added a paragrah with multiple field in my node form
2.) Now i have created a View and added the paragraph field and selected the Formatter as Rendered Entity
3.) In the preview section i can see all my paragraph data , as my twig debug is on i can see file suggestions where i can override the paragraph file
4.) But i want to access my paragraphs fields inside the views-view–unformatted-{{ view_machine_name }}.html.twig file
5.) I access the normal fields inside my content type using
view.field.{{ machine_name }}.getvalue(view.result[0])
6.) I can access the paragraph complete section by
view.field.{{ paragraph_machine_name }}.original_value
How can i access the fields inside the paragraph in this view file