Search and filter a specific node DQL

Maybe something like this

{
U as var(func: eq(name, "Alice")) @recurse(depth:3) {
  friend #You can add the U var here instead too
}

q(func: uid(U)) @filter(eq(name,"Ethan")) {
  name
  friend
}
}