我们正在与 SOQL 合作以与 Salesforce 进行交互。考虑一个非常简单的查询:
select Id, Content, TextPreview, Field
from ContentNote
limit 100
根据他们的文档ContentNote。Content
应该是富文本——但是 w 得到的是一个指向内容的 URL。这需要我们进行n+1次查询。
我们得到的响应类似于:
{
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'
}
请注意,我们正在利用 jsforce 进行 API 访问。
有没有人解决这个问题?