I am new at this and asking a basic easy question. Don’t look for deep meaning!
I can store facts like (age gets 33) or (sex gets female) and query them easily matching a pattern like (what is your _*1 >) and looking up _0 in a query.
But I don’t know what to do with facts like “marital status” which have two words. I guess I could store them easily with (“marital status” gets single) or (marital_status gets single) , right?
What’s not clear is how to query them again, as in user input “What is your marital status?”
Should I do something like (what is your _*2) and then $key = “_0 _1” and then query on $key?
Is that the right way to do it?
Thanks for the advice!
Wade