Nodes: , , . Edges: (-) and (-). The List looks like this:
1: [2]
2: [1, 3]
3: [2]
Notice how much smaller this is? You do not store any zeros. Node only lists node because that is its only neighbor. Node lists both and because it connects to both. If you had nodes but only edges, you would store roughly entries total instead of ,, cells. That is the power of adjacency lists.