I am not sure if I understand the question, but in that example your graphics layer is bound to the lastIdentifyResultGraphic<esri:GraphicsLayer graphicProvider="{lastIdentifyResultGraphic}"/>
If you want to keep the graphic and add to it just rename the Graphics layer and add the lastResultGraphic to it. <esri:GraphicsLayer id="resultGraphicsLayer"/>
Inside the myResultFunction:lastIdentifyResultGraphic = resultGraphic;
resultGraphicsLayer.add(lastIdentifyResultGraphic);
Please let me know if you have any questions.