File tree 1 file changed +14
-9
lines changed
functions/technologies/libs
1 file changed +14
-9
lines changed Original file line number Diff line number Diff line change 3
3
from google .cloud import firestore
4
4
from google .cloud .firestore_v1 .base_query import FieldFilter , Or
5
5
6
- from .result import Result
6
+ from .result import Result
7
7
from .utils import convert_to_array
8
8
from .presenters import Presenters
9
9
@@ -40,16 +40,21 @@ def list_data(params):
40
40
else :
41
41
if params ['sort' ] == 'origins' :
42
42
query = query .order_by ('origins' , direction = firestore .Query .DESCENDING )
43
-
43
+
44
44
45
45
documents = query .stream ()
46
46
47
- data = []
48
- for doc in documents :
47
+ if onlyname :
48
+ data = set ()
49
+ for doc in documents :
49
50
item = doc .to_dict ()
50
- if onlyname :
51
- data .append (item ['technology' ])
52
- else :
53
- data .append (Presenters .technology (doc .to_dict ()))
51
+ data .append (item ['technology' ])
52
+
53
+ return Result (result = list (data ))
54
+
55
+ else :
56
+ data = []
57
+ for doc in documents :
58
+ data .append (Presenters .technology (doc .to_dict ()))
54
59
55
- return Result (result = data )
60
+ return Result (result = data )
You can’t perform that action at this time.
0 commit comments