Using Properties as Pins
Properties in the nodes can be manipulated through RealityHub’s Nodegraph Editor. Let's work on COLOR CORRECTION node and how we can manipulate its properties by using these properties as pins and use them in the node graph :
Starting an Empty Project
Launch the Reality Setup, right-click on the nodegraph canvas, go to Import Template → Composite with Augmented Shadow to import one of the default templates in Reality:

And the set will be imported and the node graph should look like below:

Adding Color Correction Node
Add a COLOR CORRECTION node between COLOR CORRECTION and the COLOR CORRECTION nodes:

And connect OUTPUT pin of the COMPOSITE PASSES to INPUT pin of the COLOR CORRECTION. Connect OUTPUT pin of the COLOR CORRECTION to the MIXER DEFAULT node's CHANNEL2 pin:

Converting Properties to Pins
Click on the

Adding Properties Nodes
The properties of the nodes can be changed via the new node category named as "Properties". To change the properties of the COLOR CORRECTION node, right click on nodegraph and go to CREATE → PROPERTIES → CONSTANT FLOAT and add a CONSTANT FLOAT node to the node graph:

See that CONSTANT FLOAT is added to the node graph. Once added, connect it to COLOR CORRECTION node's MASTER GAMMA pin and note that the same types of inputs are marked as the same. Here, float property is marked as green and gray. Remember that if the input types mismatch. the pins cannot be linked to each other:

Using a Float Property as Pin
Change the FLOAT property of the CONSTANT FLOAT node:

See that the float value changes the output on CHANNEL2:

Using Vector Property as Pin
Vectors (3 dimensional) can also be converted to pins. By clicking on

Add a MAKE VECTOR node by right clicking on the node graph and CREATE → PROPERTIES → STRUCT and

There are 3 properties marked as X, Y , and Z. Click on

Create three CONSTANT FLOAT nodes and connect each of them to MAKE VECTOR node. Connect the VECTOR pin of the MAKE VECTOR node to the GAMMA of the COLOR CORRECTION node:

Go to each CONSTANT FLOAT to change their values:

See that as the FLOAT values change the image on the CHANNEL2 changes:

Changing Input Types
It is possible to convert between different input types. Go to CREATE → PROPERTIES → CONSTANT → CONSTANT INTEGER to add a CONSTANT INTEGER node and go to CREATE → PROPERTIES → CONVERSATION → INTEGER TO FLOAT and add a INTEGER TO FLOAT node. Connect the CONSTANT INTEGER node to INTEGER TO FLOAT node. And connect the INTEGER TO FLOAT node to CONSTANT FLOAT to finish the conversion pipeline:

Change the INTEGER property of the CONSTANT INTEGER node:

And see that the changing integer value makes difference on the CHANNEL2:

As this tutorial suggests, it is possible to manipulate the properties on the node graph.