[ 
https://issues.apache.org/jira/browse/TINKERPOP-1456?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15519847#comment-15519847
 ] 

ASF GitHub Bot commented on TINKERPOP-1456:
-------------------------------------------

Github user spmallette commented on a diff in the pull request:

    https://github.com/apache/tinkerpop/pull/434#discussion_r80371392
  
    --- Diff: 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/InlineFilterStrategy.java
 ---
    @@ -0,0 +1,100 @@
    +/*
    + *  Licensed to the Apache Software Foundation (ASF) under one
    + *  or more contributor license agreements.  See the NOTICE file
    + *  distributed with this work for additional information
    + *  regarding copyright ownership.  The ASF licenses this file
    + *  to you under the Apache License, Version 2.0 (the
    + *  "License"); you may not use this file except in compliance
    + *  with the License.  You may obtain a copy of the License at
    + *
    + *  http://www.apache.org/licenses/LICENSE-2.0
    + *
    + *  Unless required by applicable law or agreed to in writing,
    + *  software distributed under the License is distributed on an
    + *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + *  KIND, either express or implied.  See the License for the
    + *  specific language governing permissions and limitations
    + *  under the License.
    + */
    +
    +package 
org.apache.tinkerpop.gremlin.process.traversal.strategy.optimization;
    +
    +import 
org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.optimization.GraphFilterStrategy;
    +import org.apache.tinkerpop.gremlin.process.traversal.Step;
    +import org.apache.tinkerpop.gremlin.process.traversal.Traversal;
    +import org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy;
    +import org.apache.tinkerpop.gremlin.process.traversal.step.filter.AndStep;
    +import 
org.apache.tinkerpop.gremlin.process.traversal.step.filter.FilterStep;
    +import 
org.apache.tinkerpop.gremlin.process.traversal.step.filter.TraversalFilterStep;
    +import 
org.apache.tinkerpop.gremlin.process.traversal.strategy.AbstractTraversalStrategy;
    +import org.apache.tinkerpop.gremlin.process.traversal.util.TraversalHelper;
    +
    +import java.util.Arrays;
    +import java.util.HashSet;
    +import java.util.List;
    +import java.util.Set;
    +
    +/**
    + * @author Marko A. Rodriguez (http://markorodriguez.com)
    --- End diff --
    
    What's the strategy do? Few lines of javadoc, please


> Support SubgraphStrategy.vertexProperties().
> --------------------------------------------
>
>                 Key: TINKERPOP-1456
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP-1456
>             Project: TinkerPop
>          Issue Type: Improvement
>          Components: process
>    Affects Versions: 3.1.4, 3.2.2
>            Reporter: Marko A. Rodriguez
>
> We currently support:
> {code}
> SubgraphStrategy.build().vertices()
> SubgraphStrategy.build().edges()
> {code}
> We should also support:
> {code}
> SubgraphStrategy.build().vertexProperties()
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to