asterix-graphix/src/main/java/org/apache/asterix/graphix/function/prepare/EdgeDirectionPrepare.java [33:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    protected void transformRecord(RecordConstructor schemaRecord, Expression inputExpr, Expression sourceExpr) {
        if (!(inputExpr instanceof EdgePatternExpr)) {
            return;
        }
        EdgePatternExpr edgePatternExpr = (EdgePatternExpr) inputExpr;
        EdgeDescriptor edgeDescriptor = edgePatternExpr.getEdgeDescriptor();
        EdgeDescriptor.EdgeDirection edgeDirection = edgeDescriptor.getEdgeDirection();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



asterix-graphix/src/main/java/org/apache/asterix/graphix/function/prepare/EdgeSourceVertexPrepare.java [35:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    protected void transformRecord(RecordConstructor schemaRecord, Expression inputExpr, Expression sourceExpr) {
        if (!(inputExpr instanceof EdgePatternExpr)) {
            return;
        }
        EdgePatternExpr edgePatternExpr = (EdgePatternExpr) inputExpr;
        EdgeDescriptor edgeDescriptor = edgePatternExpr.getEdgeDescriptor();
        EdgeDescriptor.EdgeDirection edgeDirection = edgeDescriptor.getEdgeDirection();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



