I created a page of my VIEW - views-view-fields--MYFOOBAR.html.twig
I managed to output the URL of my image field via:
{{ file_url(row._entity.field_image.entity.uri.value) }}
Also I managed how to output normal data fields like text or number:
{{ row._entity.field_MYTEXTFIELD.value }}
Sorry for stupid question, but how can I get URL to my node? I need something like:
<a class="full-item-title" href="NODE URL">{{ row._entity.field_MyH1Text.value }}</a>