Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SwordElucidator committed Sep 14, 2022
1 parent 831f068 commit a805a55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def what_a_complex_human_relation(request, character_id: str):
'e2': EdgeModel, 'v3': VirtualCharacter
},
condition=Q(v__id=character_id),
), safe=False)
), safe=False) # returns a list of dict with keys {v, e, v2, e2, v3}


# same method as the previous one if you would like to access the models
Expand All @@ -322,7 +322,7 @@ def what_a_complex_human_relation_another(request, character_id: str):
},
condition=Q(v__id=character_id),
)
], safe=False)
], safe=False) # returns a list of dict with keys {v, e, v2, e2, v3}
```

#### Flask
Expand Down

0 comments on commit a805a55

Please sign in to comment.