@gen3/core 0.12.18 → 0.12.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/index.js CHANGED
@@ -2726,7 +2726,7 @@ const rawDataQueryStrForEachField = (field, asTextHistogram = false)=>{
2726
2726
  const splitField = splitFieldArray.shift();
2727
2727
  let middleQuery = '';
2728
2728
  if (splitFieldArray.length === 0) {
2729
- middleQuery = `${splitField} { ${asTextHistogram ? "histogram: asTextHistogram" : "histogram"} { count } }`;
2729
+ middleQuery = `${splitField} { ${asTextHistogram ? 'histogram: asTextHistogram' : 'histogram'} { count } }`;
2730
2730
  } else {
2731
2731
  middleQuery = `${splitField} { ${rawDataQueryStrForEachField(splitFieldArray.join('.'), asTextHistogram)} }`;
2732
2732
  }