The graphicTemplate retuns null even though there is a graphic on click. Does the getEffectivePopupTemplate works?
view.on("click", function(event) {
view.hitTest(event).then(function(event) {
var graphic = event.results[0].graphic;
console.log(graphic)
if (graphic){
const graphicTemplate = graphic.getEffectivePopupTemplate()
console.log(graphicTemplate)
}