GetAction

PropertyActions. GetAction

An action 'get' that extracts a property and saves it in a variable

Constructor

new GetAction()

Source:
Examples
{
    "get": {
        "property": "myProperty",
        "as": "myVariableName"
    }
}
//Get a property on a currently non selected concept
{
    "get": {
        "property": "myConcept.myProperty",
        "as": "myVariableName"
    }
}
//Shorthand example that gets the given property and sets it into variable 'get'
{
    "get": "myProperty"
}