We are working with SOQL to interact with Salesforce. Consider the very simple query:
      select Id, Content, TextPreview, Field
      from ContentNote
      limit 100
Per their documentation ContentNote. Content should be the rich text -- but what w are getting back a URL pointing to the content.  Which requires us to do n+1 queries.
The response we get looks something like:
{
  attributes: {
    type: 'ContentNote',
    url: '/services/data/v42.0/sobjects/ContentNote/asdfasdf0707234sdsdf'
  },
  Id: '0692L000008xwLMQAY',
  Content: '/services/data/v42.0/sobjects/ContentNote/asdfasdf0707234sdsdf/Content',
  TextPreview: 'please give jonathan a call'
}
Note we are leveraging jsforce for our API access.
Has anyone worked around this?

