Free-form input translation to code on cloud-based Mathematica

Hi,

When I use free-form input on my desktop copy of Mathematica, I get a copy of the Mathematica code that it interprets my free-form input as in addition to the output for that code:

However, on the Wolfram Cloud Mathematica, I only get the final output:

Is there a way to get the code (e.g., “Plot[x^2, {x,-1.2,1.2}]” from above) on the cloud-based version?

Thanks,
Dan

The following should work in cloud and desktop notebooks:

In[1]:= WolframAlpha["graph of x^2", "WolframParse"]

Out[1]= HoldComplete[Plot[x^2, {x, -1.2, 1.2}]]