If you want to see all the nodes in the graph, you can use the following code:
users = Users.nodes.all()
This is equivalent to the following:
MATCH (u:User) RETURN u
users is a list of User objects. We can iterate through it and print the user properties:
for u in users:
print(u.login, u.email, u.birth_date)
Next, we'll look at filtering nodes.