Then set the path to the Data you want get using the Data Path pin.
Lastly, add the callbacks by clicking and holding on the pin. Then drag to an empty space in the blueprint.
Getting the Contents from the Data
Once the setup is completed, use one or more of these Get nodes in the plugin to get the contents from the Data Snapshot.
If your data is just a single value entity, use Get String if it is a string, Get Number if it is a number and so on.
Since the path to the data is a single valued, the key should match with the last element in the Data Path array.
If it contains multiple data like this in Realtime Database:
Then you must use Get Map and then followed by the Get Nodes to get the data.
The example shows how to get data from the Map.
Attaching a listener
The "Get Data" node will only get the data once per use. If you want to continuously get updates from the data, use the "Listen to Value" node.
To set it up, set the path to the data you want to listen to using the Data Path pin.
Then, add the callbacks by clicking and holding on the pin. Then drag to an empty space in the blueprint.
Getting the Contents from the Listener
Since the path to the data is a single valued, the key should match with the last element in the Data Path array.
If it contains multiple data like this in Realtime Database:
Then you must use Get Map and then followed by the Get Nodes to get the data.