@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
29 lines (28 loc) • 807 B
JavaScript
/*
Copyright (c) 2022 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
import { AttributeType } from '../../../ComponentFramework-Mock/PropertyTypes';
export const SavedQueryMetadata = {
LogicalName: 'savedquery',
PrimaryIdAttribute: 'savedqueryid',
PrimaryNameAttribute: 'name',
EntitySetName: 'savedqueries',
Attributes: [{
AttributeType: AttributeType.Uniqueidentifier,
LogicalName: 'savedqueryid',
SchemaName: 'SavedQueryId'
}, {
AttributeType: AttributeType.String,
LogicalName: 'name',
SchemaName: 'Name'
}, {
AttributeType: AttributeType.String,
LogicalName: 'returnedtypecode',
SchemaName: 'ReturnedTypeCode'
}, {
AttributeType: AttributeType.String,
LogicalName: 'fetchxml',
SchemaName: 'FetchXML'
}]
};