github.com/unigraph-dev/dgraph@v1.1.1-0.20200923154953-8b52b426f765/systest/21million/queries/query-008 (about) 1 { 2 me(func: eq(name@en, "Steven Spielberg")) @filter(has(director.film)) { 3 name@en 4 director.film @filter(allofterms(name@en, "jones indiana")) { 5 name@en 6 } 7 } 8 } 9 --- 10 { 11 "me": [ 12 { 13 "name@en": "Steven Spielberg", 14 "director.film": [ 15 { 16 "name@en": "Indiana Jones and the Temple of Doom" 17 }, 18 { 19 "name@en": "Indiana Jones and the Last Crusade" 20 }, 21 { 22 "name@en": "Indiana Jones and the Kingdom of the Crystal Skull" 23 }, 24 { 25 "name@en": "Indiana Jones and the Raiders of the Lost Ark" 26 } 27 ] 28 } 29 ] 30 }