I want to get a node path/URL via entity query. So far I’ve managed to fetch the title of the node.
$facultyPostings = $query->get('node') ->condition('status', 1, '=') ->condition('type', 'careers') ->condition('field_career_directory', 'Faculty Postings', '=') ->sort('created') ->execute(); foreach ($facultyPostings as $key => $careers) { $careersNode = _nodeLoad($careers); $variables['faculty_postings'][$key]['title'] = $careersNode->get('title')->value; $variables['faculty_postings'][$key]['path'] = $careersNode->get('path')->value; }