New to Neo4J, Having some Trouble

Hi!

So I have this network (screenshot above) of Research Publications. I am trying to visualize which Institutions (pink) are publishing together.
Each Publication (brown) has Author nodes (blue) connected by the AUTHORED relationship. Each Author has an AFFILIATED_WITH relationship to an Institution.

I am trying to visualize which Institutions share a common Publication together and have been really struggling with how to do this with Cypher

Try this:

match (p:Publication)-[:AUTHORED]-(a:Author)-[:AFFILIATED_WITH-(i:Institution)
where p.name = "abc"
return p, a, i