Let's say that we have the following CSV file :
id,first_name,last_name,age
1,Lillian,Ross,20
2,Lillian,Perkins,23
3,Carl,Black,25
4,Raymond,Cruz,55
5,Jonathan,Kim,32
6,Judy,Berry,14
7,James,Matthews,24
8,Elizabeth,Wells,52
9,Stephanie,Perkins,32
10,Aaron,Flores,12
11,Larry,Gutierrez,42
My goal it is to build a graph as follows :
first_name
last_name \
age
The problem it is that when I search for a person , let's say Perkins , I get multiple results when I am more interested in Lillian Ross
.
How can I build relationships based on multiple fields? or how can I search on multiple fields?
SQL-Like answer :> select * from people where first_name='Lillian AND last_name="Perkins"