K connected graph not working

After creating some amount of nodes, I tried to make every node be connected to each other using this below query / mutation.

    query1 = """query all($a: string) {
        all(func: eq(name, $a)) {
           uid
           name
        }
    }"""
    variables1 = {'$a': 'Alice'}
    res1 = client.txn(read_only=True).query(query1, variables=variables1)
    ppl1 = json.loads(res1.json)
    
   
    for person in ppl1['all']: 
        for person2 in ppl1['all']:           
            p = {
                'uid': person['uid'],
                'name': 'Alice',
                'follows': {
                    'uid': person2['uid'],
                    'name': 'Alice'
                }
            }

however, I do not get the fully connected graph.

Actually, I think this might be because of my query.

{
queryall(func: has(name)) {
uid
name
follows{
uid
name
}

}
}

is there a way to query all the follows for a given node?