Class Graph.Builder

  • Enclosing class:
    Graph

    public static class Graph.Builder
    extends Object

    Builder for Graph.

    We recommend instantiating a Graph from a graphConfig.json file, a schema directory and a store.properties file. For example:
     new Graph.Builder()
             .config(Paths.get("graphConfig.json"))
             .addSchemas(Paths.get("schema"))
             .storeProperties(Paths.get("store.properties"))
             .build();