powerplatform-mcp 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -82,11 +82,9 @@ export class PowerPlatformService {
|
|
|
82
82
|
async getEntityAttributes(entityName) {
|
|
83
83
|
const selectProperties = [
|
|
84
84
|
'AttributeType',
|
|
85
|
-
'EntityLogicalName',
|
|
86
85
|
'LogicalName',
|
|
87
|
-
'SchemaName'
|
|
88
86
|
].join(',');
|
|
89
|
-
return this.makeRequest(`api/data/v9.2/EntityDefinitions(LogicalName='${entityName}')/Attributes?$select=${selectProperties}`);
|
|
87
|
+
return this.makeRequest(`api/data/v9.2/EntityDefinitions(LogicalName='${entityName}')/Attributes?$select=${selectProperties}&$filter=AttributeType ne 'Virtual'`);
|
|
90
88
|
}
|
|
91
89
|
/**
|
|
92
90
|
* Get metadata about a specific entity attribute/field
|