Select the types of activity you want to include in your feed.
1package commitquery 2 3// loadByGraphPos populates one node from a commit-graph position. 4func (query *query) loadByGraphPos(idx nodeIndex) error { 5 pos := query.nodes[idx].graphPos 6 7 return query.loadCommitAtGraphPos(idx, pos) 8}