function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
FlossyFlossy 

Streaming API doesn't support long text?

I have a long text field that I'd like to stream.  However, apparently long text is not supported?

 

Is there a way around this?

VM_SFDCVM_SFDC

Long text area fields are not supported in the current release. One of the workaround could be to create another boolean field, which tracks updates to this field. You can write your PushTopic.query against the boolean field. Upon receiving change notifications you will have to do an explicit retrieve to pull the long text area.

 

--Vinod.

Ekaterina IvanovaEkaterina Ivanova
could you describe please how to create this boolean variable?