From a805a5553ea452284d54e4be28de43d05bc5afbd Mon Sep 17 00:00:00 2001 From: Hao Sun Date: Wed, 14 Sep 2022 22:30:04 +0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e434051..f99ad6c 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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