You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@s2graph.apache.org by st...@apache.org on 2018/04/05 08:41:33 UTC

[6/6] incubator-s2graph git commit: [S2GRAPH-199]: Changing query more intuitively by using `columnName` instead of `from/to` in label field name

[S2GRAPH-199]: Changing query more intuitively by using `columnName` instead of `from/to` in label field name

JIRA:
    [S2GRAPH-199] https://issues.apache.org/jira/browse/S2GRAPH-199

Pull Request:
    Closes #153

Author
    daewon <da...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/commit/3d941d65
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/3d941d65
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/3d941d65

Branch: refs/heads/master
Commit: 3d941d65467318614c019a604d7bdf2ed11d776b
Parents: c64094f 97f7ec7
Author: DO YUNG YOON <st...@apache.org>
Authored: Thu Apr 5 17:36:30 2018 +0900
Committer: DO YUNG YOON <st...@apache.org>
Committed: Thu Apr 5 17:40:38 2018 +0900

----------------------------------------------------------------------
 CHANGES                                         |   1 +
 .../scala/org/apache/s2graph/core/S2Edge.scala  |  28 +-
 .../org/apache/s2graph/core/S2EdgeBuilder.scala |   4 +
 .../org/apache/s2graph/core/S2EdgeLike.scala    |   4 +
 .../apache/s2graph/graphql/GraphQLServer.scala  |   1 +
 .../apache/s2graph/graphql/bind/AstHelper.scala |   9 +
 .../s2graph/graphql/bind/Unmarshaller.scala     | 161 +++++++++
 .../s2graph/graphql/marshaller/package.scala    | 124 -------
 .../graphql/repository/GraphRepository.scala    |   7 +-
 .../s2graph/graphql/resolver/Resolver.scala     |  28 --
 .../s2graph/graphql/types/ManagementType.scala  | 312 +++++++++++++++++
 .../graphql/types/S2ManagementType.scala        | 339 -------------------
 .../apache/s2graph/graphql/types/S2Type.scala   | 147 ++++----
 .../types/SangriaPlayJsonScalarType.scala       |  76 -----
 .../s2graph/graphql/types/SchemaDef.scala       |   4 +-
 .../s2graph/graphql/types/StaticType.scala      | 149 ++++++++
 .../apache/s2graph/graphql/types/package.scala  | 137 +-------
 .../apache/s2graph/graphql/ScenarioTest.scala   |  52 +--
 .../org/apache/s2graph/graphql/SchemaTest.scala |  12 +-
 .../org/apache/s2graph/graphql/TestGraph.scala  |   1 +
 20 files changed, 780 insertions(+), 816 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/3d941d65/CHANGES
----------------------------------------------------------------------
diff --cc CHANGES
index 0c1f75a,39360ba..2a6e465
--- a/CHANGES
+++ b/CHANGES
@@@ -65,8 -64,6 +65,9 @@@ Release Notes - S2Graph - Version 0.2.
      * [S2GRAPH-169] - Separate multiple functionalities on Storage class into multiple Interface.
      * [S2GRAPH-170] - Create Interface for S2Edge/S2Vertex/S2Graph.
      * [S2GRAPH-182] - Version up spark dependencies.
 +    * [S2GRAPH-198] - Skip json Decode error and continue.
 +    * [S2GRAPH-200] - docker image could not include extra jars.
++    * [S2GRAPH-199] - Changing query more intuitively by using `columnName` instead of `from/to` in label field name.
  
  ** New Feature
      * [S2GRAPH-123] - Support different index on out/in direction.