|
@@ -469,7 +469,7 @@ class MongodbHandler:
|
|
self._log.warning('No data was found for the query')
|
|
self._log.warning('No data was found for the query')
|
|
return None
|
|
return None
|
|
|
|
|
|
- def update_data_in_collection(self, update_label:str, update_value: str, collection_name:str, query_label: str = None, query_value: str = None, create_if_not_exist: bool = True, find_query: dict = None, update_query:dict = None, update_many: bool = False):
|
|
|
|
|
|
+ def update_data_in_collection(self, collection_name:str, update_label:str = None, update_value: str = None, query_label: str = None, query_value: str = None, create_if_not_exist: bool = True, find_query: dict = None, update_query:dict = None, update_many: bool = False):
|
|
|
|
|
|
if isinstance(update_value, pd.DataFrame):
|
|
if isinstance(update_value, pd.DataFrame):
|
|
update_value = simplejson.loads(update_value.to_json(orient="records",
|
|
update_value = simplejson.loads(update_value.to_json(orient="records",
|