aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-05-22 14:35:56 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-05-22 14:35:56 -0700
commit9aeb154a32849649ac3722c52106d9abd8ec5c07 (patch)
tree94a314fc8a313665bfa84ea090317120f2023818 /python/fatcat_tools
parent66fd8549b63e718b8cd2ed0252e96166905b999f (diff)
downloadfatcat-9aeb154a32849649ac3722c52106d9abd8ec5c07.tar.gz
fatcat-9aeb154a32849649ac3722c52106d9abd8ec5c07.zip
count linked refs (not just raw refs) in elasticsearch
Diffstat (limited to 'python/fatcat_tools')
-rw-r--r--python/fatcat_tools/transforms/elasticsearch.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/fatcat_tools/transforms/elasticsearch.py b/python/fatcat_tools/transforms/elasticsearch.py
index 7f7f2f1b..c150572e 100644
--- a/python/fatcat_tools/transforms/elasticsearch.py
+++ b/python/fatcat_tools/transforms/elasticsearch.py
@@ -84,6 +84,9 @@ def release_to_elasticsearch(entity, force_bool=True):
t['any_abstract'] = len(release.abstracts or []) > 0
t['ref_count'] = len(release.refs or [])
+ t['ref_linked_count'] = 0
+ if release.refs:
+ t['ref_linked_count'] = len([1 for ref in release.refs if ref.target_release_id])
t['contrib_count'] = len(release.contribs or [])
contrib_names = []
creator_ids = []