Tree view and table view unavailable
Cannot Reproduce
Hi.
In some collections tree view and the table view is not available. Only JSON view is available.
NoSQLBooster for MongoDB
Version 5.0.2 (5.0.2)
Thanks so much for your support!
It's hard to pinpoint a problem by guessing.
Could you please give me some test data and detailed steps to recall the issue locally?
It's hard to pinpoint a problem by guessing.
Could you please give me some test data and detailed steps to recall the issue locally?
...
...
I have a similar problem.
When I run the following query for the first time, the table view is working:
db.owid.aggregate(
[{$match: {'date' : ISODate("2020-04-01T00:00:00.000+08:00")}},
{$match: {'total_cases' : {$gt: 10}}},
{$match: {'continent' : {$in: ['Asia', 'Europe']}}},
{
$group:
{
'_id':'$location'
}
}
])
When I enhanced the query to the following, the table view breaks:
db.owid.aggregate(
[{$match: {'date' : ISODate("2020-04-01T00:00:00.000+08:00")}},
{$match: {'total_cases' : {$gt: 10}}},
{$match: {'continent' : {$in: ['Asia', 'Europe']}}},
{
$group:
{
'_id':'$location'
}
},
{
$addFields: { 'country': "$_id"}
},
{
$project: { '_id': 0}
}
])
The table view remains broken even after I revert back to the first query.
I have a similar problem.
When I run the following query for the first time, the table view is working:
db.owid.aggregate(
[{$match: {'date' : ISODate("2020-04-01T00:00:00.000+08:00")}},
{$match: {'total_cases' : {$gt: 10}}},
{$match: {'continent' : {$in: ['Asia', 'Europe']}}},
{
$group:
{
'_id':'$location'
}
}
])
When I enhanced the query to the following, the table view breaks:
db.owid.aggregate(
[{$match: {'date' : ISODate("2020-04-01T00:00:00.000+08:00")}},
{$match: {'total_cases' : {$gt: 10}}},
{$match: {'continent' : {$in: ['Asia', 'Europe']}}},
{
$group:
{
'_id':'$location'
}
},
{
$addFields: { 'country': "$_id"}
},
{
$project: { '_id': 0}
}
])
The table view remains broken even after I revert back to the first query.
Replies have been locked on this page!