diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-22 14:35:56 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-22 14:35:56 -0700 |
commit | 9aeb154a32849649ac3722c52106d9abd8ec5c07 (patch) | |
tree | 94a314fc8a313665bfa84ea090317120f2023818 /python/fatcat_tools/transforms/elasticsearch.py | |
parent | 66fd8549b63e718b8cd2ed0252e96166905b999f (diff) | |
download | fatcat-9aeb154a32849649ac3722c52106d9abd8ec5c07.tar.gz fatcat-9aeb154a32849649ac3722c52106d9abd8ec5c07.zip |
count linked refs (not just raw refs) in elasticsearch
Diffstat (limited to 'python/fatcat_tools/transforms/elasticsearch.py')
-rw-r--r-- | python/fatcat_tools/transforms/elasticsearch.py | 3 |
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 = [] |