Roy
My feedback
17 results found
-
16 votes
Roy supported this idea ·
-
12 votes
Roy supported this idea ·
-
7 votes
Roy supported this idea ·
-
2 votes
An error occurred while saving the comment Roy supported this idea ·
-
1 vote
An error occurred while saving the comment Roy commented
-
4 votes
Roy shared this idea ·
-
7 votes
Roy supported this idea ·
-
1 vote
An error occurred while saving the comment Roy commented
Given that we have "This Time Last Month" and all the historical billing, a projection of what the current month might go up to, or even further, will be great
-
5 votes
An error occurred while saving the comment Roy commented
Just to clarify, the ask is to allow hiding of axis labels as shown in the attached image
Roy supported this idea ·
-
31 votes
Roy supported this idea ·
-
40 votes
Roy supported this idea ·
-
5 votes
Roy shared this idea ·
-
6 votes
Roy shared this idea ·
-
43 votes
Roy supported this idea ·
-
51 votes
Roy supported this idea ·
-
91 votes
Roy supported this idea ·
-
12 votes
An error occurred while saving the comment Roy commented
Provide functionality similar to the Solr Analysis screen -- https://lucene.apache.org/solr/guide/8_6/analysis-screen.html
Roy supported this idea ·
Apache Solr also implements nested facets via its [JSON Facet API](https://solr.apache.org/guide/solr/latest/query-guide/json-facet-api.html#nested-facets). A similar syntax in Atlas Search could look like this:
```js
[{
"$searchMeta": {
"facet": {
"operator": {
"text": {
"path": "title",
"query": "space"
}
},
"facets": {
"genresFacet": {
"type": "string",
"path": "genres",
"facets": {
"yearFacet": {
"type": "number",
"path": "year",
"boundaries": [1990, 2000, 2010, 2020]
}
}
}
}
}
}
}]
```
... and the output could look like this:
```js
{
"count": {
"lowerBound": NumberLong(23026)
},
"facet": {
"genresFacet": {
"buckets": [
{
"_id": "Drama", "count": NumberLong(13527),
"yearFacet": {
"buckets": [
{ "_id": 1990, "count": NumberLong(23) },
{ "_id": 2000, "count": NumberLong(89) },
{ "_id": 2010, "count": NumberLong(308) }
]
}
},
{
"_id": "Comedy", "count": NumberLong(6922),
"yearFacet": {
"buckets": [
{ "_id": 2010, "count": NumberLong(13) },
{ "_id": 2020, "count": NumberLong(28) }
]
}
}
]
}
}
}
```