I am trying to retrieve a very small amount of data from Sharepoint into a collection, but the retrieval is extraordinarily slow.
I have a Sharepoint list that holds a number of integer columns, and a "multiple lines of text" column (called "Image") , which I am using to store image data. Here is a snippet:

The table currently has 49 rows (i.e. not many rows)
In part of my code, I wish to retrieve only the two integer columns shown above. My code is as follows:

This code takes around 45 seconds to run, and returns only the required 49 rows, which is exceptionally slow.
It appears that PowerApps retrieves every column in the table - which in this instance includes some large chunks of data in the "image" column, which takes a while - before then filtering out the two columns that I need.
Is there a faster way to do this? Is there a way to force PowerApps to genuinely only retrieve the two columns that I need?
Any suggestions gratefully received!