File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
def list_data (params ):
12
12
ref = DB .collection ("categories" )
13
13
14
- query = ref .order_by ("category" , "asc" )
14
+ query = ref .order_by ("category" , direction = firestore . Query . ASCENDING )
15
15
16
16
if "category" in params :
17
17
category_array = convert_to_array (params ["category" ])
@@ -22,7 +22,7 @@ def list_data(params):
22
22
23
23
documents = query .stream ()
24
24
data = []
25
-
25
+
26
26
if "onlyname" in params :
27
27
for doc in documents :
28
28
data .append (doc .get ("category" ))
Original file line number Diff line number Diff line change 14
14
def list_data (params ):
15
15
ref = DB .collection ("technologies" )
16
16
17
- query = ref .order_by ("technology" , 'asc' )
17
+ query = ref .order_by ("technology" , direction = firestore . Query . ASCENDING )
18
18
19
19
if "technology" in params :
20
20
arfilters = []
@@ -34,7 +34,7 @@ def list_data(params):
34
34
35
35
documents = query .stream ()
36
36
data = []
37
-
37
+
38
38
if "onlyname" in params and "client" not in params :
39
39
appended_tech = set ()
40
40
for doc in documents :
You can’t perform that action at this time.
0 commit comments