ocaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

change the "Contributions" backmatter query to only consider references

This is an experimental change. Before this change, Contributions would
include every tree the person has authored or contributed to, but that
becomes quickly useless and the number gets higher. What is more useful
to see is a version of this query that returns only trees designated as
"references", e.g. publications, etc.

+4 -1
+4 -1
lib/core/Builtin_queries.ml
··· 60 60 let x = "X" in 61 61 Dx.{ 62 62 var = x; 63 - positives = [Builtin_relation.has_direct_contributor @* [var x; const vtx]]; 63 + positives = [ 64 + Builtin_relation.has_direct_contributor @* [var x; const vtx]; 65 + Builtin_relation.is_reference @* [var x] 66 + ]; 64 67 negatives = [] 65 68 } 66 69