You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rui_info_where_clause="WHERE NOT EXISTS {MATCH (ds)<-[*]-(ruiSample:Sample) WHERE NOT ruiSample.rui_location IS NULL AND NOT TRIM(ruiSample.rui_location) = ''} MATCH (ds)<-[*]-(ruiSample:Sample)"
953
956
if'dataset_status'inparam_dict:
954
-
dataset_status_query_string=f" WHERE ds.status = '{param_dict['dataset_status'].lower().capitalize()}'"
957
+
iffirst_param:
958
+
dataset_status_query_string=f" WHERE toUpper(ds.status) = '{param_dict['dataset_status'].upper()}'"
959
+
else:
960
+
dataset_status_query_string=f" AND toUpper(ds.status) = '{param_dict['dataset_status'].upper()}'"
0 commit comments