function unnestQuery()

in scripts/dashboard-importer/src/dashboards/converter/template_variables/query.ts [30:35]


function unnestQuery(query: string | QueryObject): string {
  if (typeof query === 'string') {
    return query;
  }
  return query.query;
}