I am trying to get specific data only from the current user. My data in my database is as follows:

For example, I want to just grab the full_name and save it in the userName variable. Below I use to capture my data.
ref.queryOrderedByChild("full_name").queryEqualToValue("userIdentifier").observeSingleEventOfType(.ChildAdded, withBlock: { snapshot in print(snapshot.value) // let userName = snapshot.value["full_name"] as! String })
Unfortunately, this is what my console prints.

I would be grateful for any help :) Thank you!
source share