ref: 3ce59c3248dec0eb0f918c42f37f53bc2ac20425
dir: /commitquery/parent_ref.go/
package commitquery
import (
commitgraphread "codeberg.org/lindenii/furgit/format/commitgraph/read"
objectid "codeberg.org/lindenii/furgit/object/id"
)
// parentRef references one commit parent.
type parentRef struct {
ID objectid.ObjectID
GraphPos commitgraphread.Position
HasGraphPos bool
}