return edges.filter((edge: IEdge) => {
      const [head]: [IVertex, IVertex] = graph.incidentor.value[edge]

      return head === vertex
    })