I have some nodes and the keys in the nodes are as following:
query = ''' MATCH (p:Product)
RETURN keys(p)'''
["formula_Default", "Product URL", "Data Location", "Disc technology", "Provider HQ", "GHz", "Memory", "Price monthly", "vCore", "SLA", "Support", "Backup", "DDOS", "Apps", "IP", "IPv6", "Virtualization Type", "Disc Space GB", "Operating System", "Network Speed MBit", "Traffic GBytes", "companySize", "branch", "location", "name"]
I want to check, possibly with regex if a the key matches with a string then to get the value of that key: eg.,
MATCH (p:Product)
WHERE toLower(keys(p)) CONTAINS 'formula' OR keys(p) =~ '(?i)formula(?i).*'
RETURN value(p) (Of course this does not work but this is the idea)
Can somebody give me some help here? How can I possibly do something like that??