-
Type: Bug
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: None
-
Environment:OS:
node.js / npm versions:
Additional info:
-
Developer Tools
-
Not Needed
-
Iteration Utahraptor, Iteration Wendiceratops, Iteration Xiaosaurus
Problem Statement/Rationale
I have a collection with documents containing UUID fields (standard, not legacy). When I browse those documents in the extension, they are shown like this:
{
"id": "5e58eae46015f74c61dd6af0",
"myuuid": {
"$binary":
}
}
I would have expected them to be shown as:
{
"id": "5e58eae46015f74c61dd6af0",
"myuuid": UUID("20b1abd9-e299-4a6a-a441-7d4e66ca0809")
}
Steps to Reproduce
Open a document from the side bar that contains a UUID field
Expected Results
I would have expected them to be shown as:
{
"id": "5e58eae46015f74c61dd6af0",
"myuuid": UUID("20b1abd9-e299-4a6a-a441-7d4e66ca0809")
}
Actual Results
UUID fields are shown like this:
{
"id": "5e58eae46015f74c61dd6af0",
"myuuid": {
"$binary":
}
}
Additional Notes
- split to
-
VSCODE-523 Display playground documents and results with Shell Syntax instead of EJSON by default
- Ready for Work