GCP - Cloud Firestore and Bigtable
Given this code snippet using Firestore on GCP:
What will be printed?
doc_ref = firestore_client.collection('users').document('user123')
doc_ref.set({'name': 'Alice', 'age': 30})
user = doc_ref.get().to_dict()
print(user['name'])What will be printed?
