[S2GRAPH-223]: Support WhereParser on Vertex. JIRA: [S2GRAPH-223] https://issues.apache.org/jira/browse/S2GRAPH-223
Pull Request: Closes #175 Author DO YUNG YOON <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/commit/55826449 Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/55826449 Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/55826449 Branch: refs/heads/master Commit: 5582644908518c322f0a1809f68473941961e57b Parents: 2083d13 7d18c65 Author: DO YUNG YOON <[email protected]> Authored: Thu Jun 21 10:19:51 2018 +0900 Committer: DO YUNG YOON <[email protected]> Committed: Thu Jun 21 10:19:51 2018 +0900 ---------------------------------------------------------------------- .../org/apache/s2graph/core/QueryParam.scala | 24 +++-- .../s2graph/core/S2EdgePropertyHelper.scala | 2 +- .../scala/org/apache/s2graph/core/S2Graph.scala | 23 +++-- .../org/apache/s2graph/core/S2GraphLike.scala | 18 ++-- .../org/apache/s2graph/core/VertexFetcher.scala | 2 +- .../s2graph/core/index/ESIndexProvider.scala | 10 +- .../core/index/LuceneIndexProvider.scala | 8 +- .../s2graph/core/parsers/WhereParser.scala | 102 +++++++++++-------- .../s2graph/core/rest/RequestParser.scala | 18 +++- .../apache/s2graph/core/rest/RestHandler.scala | 7 +- .../core/storage/hbase/AsynchbaseStorage.scala | 2 +- .../storage/hbase/AsynchbaseVertexFetcher.scala | 21 ++-- .../core/storage/rocks/RocksVertexFetcher.scala | 5 +- .../core/Integrate/VertexTestHelper.scala | 8 +- .../s2graph/core/index/IndexProviderTest.scala | 2 +- .../s2graph/core/parsers/WhereParserTest.scala | 22 +++- .../s2graph/graphql/types/FieldResolver.scala | 11 +- .../apache/s2graph/graphql/types/S2Type.scala | 3 +- 18 files changed, 183 insertions(+), 105 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/55826449/s2core/src/main/scala/org/apache/s2graph/core/parsers/WhereParser.scala ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/55826449/s2core/src/test/scala/org/apache/s2graph/core/parsers/WhereParserTest.scala ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/55826449/s2graphql/src/main/scala/org/apache/s2graph/graphql/types/FieldResolver.scala ----------------------------------------------------------------------
