Getting relationships from Golang Driver

When I execute the following query in the Neo4j Browser, it produces a completely connected visual graph. But when I switch to table view it only contains records corresponding to the nodes. i.e. no info about the relationships.

MATCH (n) RETURN n

The table view corresponds to the result I get when I execute the same query using the Golang Driver.

Is the browser executing a different query or modifying mine to get the results to populate the graph view?

How can I modify my query from Golang to get the relationships, so I can construct the graph?