Skip to main content

Guc

How to use the Guc (Globally Unique Code) value type

The Guc value type returns items with a specific Globally Unique Code (GUC).

Example

In this case, find all the tasks that implement the designInterfaces_jobs interface.

{
"type": "Query",
"properties": {
"dodiCode": "designInterfaces_tasks",
"attributes": ["all"]
},
"children": [
{
"type": "Equals",
"children": [
{
"type": "ItemProperty",
"properties": {
"itemPropertyName": "DesignCode"
}
},
{
"type": "Guc",
"properties": {
"value": ["designInterfaces_jobs"]
}
}
]
}
]
}