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
CuriosityCuriosity 

SOQL for featured and navigational topics in customer communities

Is there any way to use SOQL on the Topic standard objects to know which topic is a featured topic and which is a navigational topic?
JLA.ovhJLA.ovh
You probably need to query on TopicFeed standard object, the "Type" field is a picklist allowing you to have this kind of information (Poll...)
MCordMCord
@Curiosity Did you ever figure this out?  I am looking to do the same.
Scott Morrison 33Scott Morrison 33
Would love to know if anyone figured this out :) or if it's even possible
Krzysztof Daniel KowalewskiKrzysztof Daniel Kowalewski
Did someone find any solution?
Banshi Lal DangiBanshi Lal Dangi
We can do the query on "Topic" object.

Below is the SOQL query to get all the "Featured' topics.
SELECT Id, Name, TalkingAbout, Description, FROM Topic WHERE ManagedTopicType LIKE '%Featured%'

Below is the SOQL query to get all the "Navigational' topics.
 
SELECT Id, Name, TalkingAbout, Description, FROM Topic WHERE ManagedTopicType LIKE '%Navigational%'