We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93a622a commit 89ce47fCopy full SHA for 89ce47f
src/datasource.ts
@@ -344,7 +344,7 @@ export class QuickwitDataSource
344
return from(this.getResource('_elastic/' + this.index + '/_field_caps')).pipe(
345
map((field_capabilities_response: FieldCapabilitiesResponse) => {
346
const shouldAddField = (field: any) => {
347
- if (aggregatable !== undefined && !field.aggregatable) {
+ if (aggregatable !== undefined && field.aggregatable != aggregatable) {
348
return false
349
}
350
if (type?.length === 0) {
0 commit comments