How to fetch and show all the Notes for a record using Lightning Web Component in Salesforce?
Apex Class: public with sharing class PrintNotesController { @AuraEnabled( cacheable=true ) public static List < NoteWrapper > fetchNotes( String strRecordId ) { List < NoteWrapper > listNoteWrappers = new List ....