diff --git a/lib/config/src/configv1/convert_helper.rs b/lib/config/src/configv1/convert_helper.rs index b2f4717e..06792a28 100644 --- a/lib/config/src/configv1/convert_helper.rs +++ b/lib/config/src/configv1/convert_helper.rs @@ -415,6 +415,7 @@ fn map_query( log::info!("Object query: {select_temp}"); Query::::complex_json(format!("{select_temp}").as_str(), for_each, where_clause) }, + json::Value::String(s) => Query::simple(s.to_string(), for_each, where_clause), _ => Query::simple(format!("{select_temp}"), for_each, where_clause), }; let query = match query {