https://github.com/thomasleveil/tmp-metabase-mongo-issue-columns
https://github.com/thomasleveil/tmp-metabase-mongo-issue-columns
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thomasleveil/tmp-metabase-mongo-issue-columns
- Owner: thomasleveil
- Created: 2019-04-03T22:07:56.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-03T22:31:54.000Z (about 6 years ago)
- Last Synced: 2025-02-01T13:21:21.189Z (4 months ago)
- Language: Shell
- Homepage: https://github.com/metabase/metabase/issues/9684
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Get started
===========```shell
docker-compose up -d
```Then add database:
- type: mongoDB
- host: mongo
- database: test
Issue
=====My collection holds one single document:
```json
{
"_id": { "$oid": "5be9854e44429b000ddb94cc" },
"status": "GENERATED_ERROR",
"subArray": [
{"status":"foo","bar":"test"}
],
"subObject": {"status": "bar"}
}
```In the Database Model, Metabase shows two columns named `Status`. One is from the root element `status` field, the other from the `subObject` element. How to figure out which one is which?
