[SalesForce] How to query the KnowledgeArticleVersion and Linked Article Objects in sfdc

enter image description here

i get "SELECT id, abdulking__Knowledge_Linked_Artical__c
^
ERROR at Row:1:Column:12
No such column 'abdulking__Knowledge_Linked_Artical__c' on entity 'KnowledgeArticleVersion'. If you are attempting to use a custom field, be sure to append the '__c' after the custom field name. Please reference your WSDL or the describe call for the appropriate names."
This above ERROR how to fetch all Fields From KnowledgeArticleVersion Object.

Note: If you have any idea give examples other wise leave it.. Don't give Nagative Mark … Thanks

enter image description here

Best Answer

If you have create an article type name xyz then KnowledgeArticleVersion API name will be xyz_kav.

For more information, refer KnowledgeArticleVersion

Here is an example from documentation.

SELECT Id, Title
FROM Offer__kav
WHERE PublishStatus='Draft'
AND Language = 'en_US'
WITH DATA CATEGORY Geography__c AT (france__c,usa__c) AND Product__c ABOVE dsl__c