Attributes Query Definition.

Example

Example:

const ExampleQuery: IEpSdkAttributesQuery = {
AND: {
queryList: [
{
attributeName: 'PUBLISH_DESTINATION',
comparisonOp: EEpSdkComparisonOps.IS_EQUAL,
value: 'DEV-PORTAL-SYSTEM-ID',
},
],
OR: {
queryList: [
{
attributeName: 'OWNING_DOMAIN_ID',
comparisonOp: EEpSdkComparisonOps.IS_EQUAL,
value: 'DOMAIN-ID'
},
{
attributeName: 'DOMAIN_ID_SHARING',
comparisonOp: EEpSdkComparisonOps.CONTAINS,
value: 'SHARED-WITH-DOMAIN-ID'
},
]
}
}
};

Hierarchy

  • IEpSdkAttributesQuery

Properties

Properties