Salesforce table 个名字

Salesforce table names

我是 salesforce 的新手,我想查看我的 table 姓名。是否有任何 SOQL 查询来获取所有 table 或我必须从 salesforce 仪表板中检查。无论如何,请帮助我获得所有 table 个名字。 如果您指导我查看字段名称,我将非常感激 我在 Whosebug 上查看了一些答案,但找不到任何有用的东西。

EntityDefinition 是一个不错的开始(尝试使用 WHERE 子句,即使在 vanilla SF 中也有比您想象的更多的表)

SELECT KeyPrefix, QualifiedApiName, Label, IsQueryable, IsDeprecatedAndHidden, IsCustomSetting
FROM EntityDefinition
WHERE IsCustomizable = true AND IsCustomSetting = false