Within a nodes Twig template I am able to access e.g. referenced fields with…
{{ node.field_my_entity_reference.0.entity.field_my_field.0.value }}
With the help of Twig Tweak I am able to render fields from specific nodes by referencing their NID (here NID 1)…
{{ drupal_field('field_my_field', 'node', 1) }}
Now is it possible to directly access the fields of specific nodes by their NID, not just getting the rendered content, either by a way Drupal already provides or with the help of a module like Twig Tweak? I know this is possible through preprocessing, but I’m searching for a way to do this directly in Twig.