Hello everyone,
I’m using Google Firestore for the backend database and I’m having an issue with retrieving a particular field from the URL. Here is the code in JSON format:
{
“name”: “https://firestore.googleapis.com/v1beta1/{parent=projects//databases//documents/**}/{collectionId}”,
“fields”: {
“Creator”: {
“referenceValue”: " ab/cd"
},
“Description”: {
“stringValue”: "description "
},
“Name”: {
“stringValue”: “name”
}
}
}
In this Code, I just need the stringValue corresponding to the name. Is there a way I can retrieve this value from just the API URL by using a formula, or what query should I run to retrieve this data?