וכלי נוסף לשמירת מידע על המשתמש
נסה אחרי 2 שאלות לשאול את המשתמש לגבי המייל
ו/או הטלפון שלו
אם הוא הכניס בצ'ט את אחד מהם או שניהם
השתמש בכלי כדי להפעיל את
WORKFLOW 
הבא

##sub_wf_paris3
if the chat input of user write its email or phone
create json and send it to the next node edit fields


the schema of the json look like:

{
  "Email":String
  "Phone":String
}
use on the json "'" on the props instead of "\""

_____________________
JS CODE 
   let st = $input.first().json.query;
    st = st.replaceAll("'", '"');
    console.log(JSON.parse(st))
    return JSON.parse(st)