├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── build.gradle ├── compiler ├── .gitignore ├── build.gradle └── src │ ├── main │ ├── java │ │ └── ingraph │ │ │ ├── emf │ │ │ └── util │ │ │ │ └── PrettyPrinter.java │ │ │ └── model │ │ │ └── misc │ │ │ ├── CypherType.java │ │ │ ├── Function.java │ │ │ └── FunctionCategory.java │ └── scala │ │ └── ingraph │ │ ├── compiler │ │ ├── FPlanParser.scala │ │ ├── cypher2gplan │ │ │ ├── CypherParser.scala │ │ │ ├── CypherToGPlan.scala │ │ │ ├── GPlanBeautifier.scala │ │ │ ├── GPlanExpander.scala │ │ │ ├── GPlanResolver.scala │ │ │ ├── builders │ │ │ │ ├── AttributeBuilder.scala │ │ │ │ ├── CudBuilder.scala │ │ │ │ ├── ExpressionBuilder.scala │ │ │ │ ├── LiteralBuilder.scala │ │ │ │ ├── PatternBuilder.scala │ │ │ │ ├── ReturnBuilder.scala │ │ │ │ └── StatementBuilder.scala │ │ │ ├── structures.scala │ │ │ └── util │ │ │ │ ├── BuilderUtil.scala │ │ │ │ ├── GrammarUtil.scala │ │ │ │ ├── StringUtil.scala │ │ │ │ └── TransformUtil.scala │ │ ├── exceptions.scala │ │ ├── plantransformers │ │ │ ├── GPlanToNPlan.scala │ │ │ └── NPlanToFPlan.scala │ │ ├── test │ │ │ └── CompilerTest.scala │ │ └── util │ │ │ └── FormatterUtil.scala │ │ ├── model │ │ ├── expr.scala │ │ ├── fplan.scala │ │ ├── gplan.scala │ │ ├── nplan.scala │ │ ├── plan.scala │ │ └── treenodes.scala │ │ └── util │ │ ├── PlanPrettyPrinter.scala │ │ └── tex │ │ ├── GraphTexConverter.scala │ │ └── TexConverter.scala │ └── test │ └── scala │ └── ingraph │ ├── sandbox │ ├── BiCompilerTest.scala │ ├── DmlTest.scala │ ├── InteractiveCompilerTest.scala │ ├── JsaTest.scala │ ├── NPlanToFPlanTest.scala │ ├── RandomCompilationTest.scala │ ├── TckCompilerTest.scala │ ├── TrainBenchmarkCompilationTest.scala │ └── TrainBenchmarkDmlTest.scala │ └── util │ └── tex │ └── TexTest.scala ├── csv-loader ├── build.gradle └── src │ ├── main │ ├── java │ │ └── ingraph │ │ │ └── bulkloader │ │ │ └── csv │ │ │ ├── columnname │ │ │ ├── ColumnConstants.java │ │ │ ├── ColumnDescriptor.java │ │ │ ├── ColumnNameParser.java │ │ │ ├── ColumnType.java │ │ │ └── ParseStringArray.java │ │ │ ├── data │ │ │ ├── CsvEdge.java │ │ │ ├── CsvEntity.java │ │ │ └── CsvVertex.java │ │ │ ├── entityprocessor │ │ │ ├── EdgeRowParser.java │ │ │ ├── EntityRowParser.java │ │ │ ├── IdGenerator.java │ │ │ ├── PropertyExtractor.java │ │ │ └── VertexRowParser.java │ │ │ ├── loader │ │ │ ├── LdbcUpdateStreamCsvLoader.java │ │ │ ├── MassCsvLoader.java │ │ │ └── cellprocessor │ │ │ │ ├── AbstractParseEpoch.java │ │ │ │ ├── ParseEpochToDate.java │ │ │ │ ├── ParseEpochToDateTime.java │ │ │ │ └── ParseList.java │ │ │ └── parser │ │ │ └── CsvParser.java │ └── scala │ │ └── ingraph │ │ └── csv │ │ └── EdgeMetaData.scala │ └── test │ ├── java │ └── ingraph │ │ └── bulkloader │ │ └── csv │ │ ├── CsvLabelTest.java │ │ ├── LdbcSnbCsvTest.java │ │ ├── LdbcSnbUpdateStreamCsvTest.java │ │ ├── TestConstants.java │ │ ├── TrainBenchmarkCsvTest.java │ │ └── columnname │ │ └── ColumnNameParserTest.java │ └── resources │ └── data-with-labels.csv ├── cypher-to-sql ├── README.md ├── TransitiveJoin.sql ├── build.gradle ├── export.cypher ├── ldbc_snb_implementations │ ├── LICENSE.txt │ ├── README.md │ ├── cypher │ │ └── queries │ │ │ ├── README.md │ │ │ ├── bi-1.cypher │ │ │ ├── bi-10-without-pattern-comprehension.cypher │ │ │ ├── bi-10.cypher │ │ │ ├── bi-11.cypher │ │ │ ├── bi-12.cypher │ │ │ ├── bi-13.cypher │ │ │ ├── bi-14.cypher │ │ │ ├── bi-15.cypher │ │ │ ├── bi-16.cypher │ │ │ ├── bi-17.cypher │ │ │ ├── bi-18.cypher │ │ │ ├── bi-19.cypher │ │ │ ├── bi-2.cypher │ │ │ ├── bi-20.cypher │ │ │ ├── bi-21.cypher │ │ │ ├── bi-22.cypher │ │ │ ├── bi-23.cypher │ │ │ ├── bi-24.cypher │ │ │ ├── bi-25.cypher │ │ │ ├── bi-3.cypher │ │ │ ├── bi-4.cypher │ │ │ ├── bi-5.cypher │ │ │ ├── bi-6.cypher │ │ │ ├── bi-7.cypher │ │ │ ├── bi-8.cypher │ │ │ ├── bi-9.cypher │ │ │ ├── check-feature.sh │ │ │ ├── interactive-complex-1.cypher │ │ │ ├── interactive-complex-10-without-list-comprehension.cypher │ │ │ ├── interactive-complex-10.cypher │ │ │ ├── interactive-complex-11.cypher │ │ │ ├── interactive-complex-12.cypher │ │ │ ├── interactive-complex-13.cypher │ │ │ ├── interactive-complex-14.cypher │ │ │ ├── interactive-complex-2.cypher │ │ │ ├── interactive-complex-3.cypher │ │ │ ├── interactive-complex-4.cypher │ │ │ ├── interactive-complex-5.cypher │ │ │ ├── interactive-complex-6.cypher │ │ │ ├── interactive-complex-7-with-lists.cypher │ │ │ ├── interactive-complex-7.cypher │ │ │ ├── interactive-complex-8.cypher │ │ │ ├── interactive-complex-9.cypher │ │ │ ├── interactive-short-1.cypher │ │ │ ├── interactive-short-2.cypher │ │ │ ├── interactive-short-3.cypher │ │ │ ├── interactive-short-4.cypher │ │ │ ├── interactive-short-5.cypher │ │ │ ├── interactive-short-6.cypher │ │ │ ├── interactive-short-7.cypher │ │ │ ├── interactive-update-1.cypher │ │ │ ├── interactive-update-2.cypher │ │ │ ├── interactive-update-3.cypher │ │ │ ├── interactive-update-4.cypher │ │ │ ├── interactive-update-5.cypher │ │ │ ├── interactive-update-6.cypher │ │ │ ├── interactive-update-7.cypher │ │ │ └── interactive-update-8.cypher │ └── postgres │ │ ├── README.md │ │ ├── load-scripts │ │ ├── convert-csvs.sh │ │ ├── load-knows_undirected-table.sh │ │ ├── load.sh │ │ ├── schema.sql │ │ ├── schema_constraints.sql │ │ ├── snb-load-knows_undirected-table.sql │ │ └── snb-load.sql │ │ ├── queries-generated │ │ └── .gitignore │ │ ├── test-data-generated │ │ └── .gitignore │ │ └── test-data │ │ ├── .gitignore │ │ ├── comment_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ ├── updateStream.properties │ │ ├── updateStream_0_0_forum.csv │ │ └── updateStream_0_0_person.csv ├── plans.txt ├── postgres.md ├── src │ ├── main │ │ ├── resources │ │ │ ├── gtop │ │ │ │ ├── ldbc.gtop │ │ │ │ ├── movies.gtop │ │ │ │ └── movies.sql │ │ │ ├── interactive-tests │ │ │ │ ├── cities-with-residents.cypher │ │ │ │ ├── cities-with-residents.sql │ │ │ │ ├── getedges-comment.cypher │ │ │ │ ├── getedges-comment.sql │ │ │ │ ├── getedges-message.cypher │ │ │ │ ├── getedges-message.sql │ │ │ │ ├── getedges-post.cypher │ │ │ │ ├── getedges-post.sql │ │ │ │ ├── getvertices-comment.cypher │ │ │ │ ├── getvertices-comment.sql │ │ │ │ ├── getvertices-message.cypher │ │ │ │ ├── getvertices-message.sql │ │ │ │ ├── getvertices-post.cypher │ │ │ │ ├── getvertices-post.sql │ │ │ │ ├── interactive-complex-1.cypher │ │ │ │ ├── interactive-complex-1.sql │ │ │ │ ├── interactive-complex-10.cypher │ │ │ │ ├── interactive-complex-10.sql │ │ │ │ ├── interactive-complex-11.cypher │ │ │ │ ├── interactive-complex-11.sql │ │ │ │ ├── interactive-complex-12.cypher │ │ │ │ ├── interactive-complex-12.sql │ │ │ │ ├── interactive-complex-13.cypher │ │ │ │ ├── interactive-complex-13.sql │ │ │ │ ├── interactive-complex-14.cypher │ │ │ │ ├── interactive-complex-14.sql │ │ │ │ ├── interactive-complex-2.cypher │ │ │ │ ├── interactive-complex-2.sql │ │ │ │ ├── interactive-complex-3.cypher │ │ │ │ ├── interactive-complex-3.sql │ │ │ │ ├── interactive-complex-4.cypher │ │ │ │ ├── interactive-complex-4.sql │ │ │ │ ├── interactive-complex-5.cypher │ │ │ │ ├── interactive-complex-5.sql │ │ │ │ ├── interactive-complex-6.cypher │ │ │ │ ├── interactive-complex-6.sql │ │ │ │ ├── interactive-complex-7.cypher │ │ │ │ ├── interactive-complex-7.sql │ │ │ │ ├── interactive-complex-8.cypher │ │ │ │ ├── interactive-complex-8.sql │ │ │ │ ├── interactive-complex-9.cypher │ │ │ │ ├── interactive-complex-9.sql │ │ │ │ ├── interactive-short-1.cypher │ │ │ │ ├── interactive-short-1.sql │ │ │ │ ├── interactive-short-2.cypher │ │ │ │ ├── interactive-short-2.sql │ │ │ │ ├── interactive-short-3.cypher │ │ │ │ ├── interactive-short-3.sql │ │ │ │ ├── interactive-short-4.cypher │ │ │ │ ├── interactive-short-4.sql │ │ │ │ ├── interactive-short-5.cypher │ │ │ │ ├── interactive-short-5.sql │ │ │ │ ├── interactive-short-6.cypher │ │ │ │ ├── interactive-short-6.sql │ │ │ │ ├── interactive-short-7.cypher │ │ │ │ ├── interactive-short-7.sql │ │ │ │ ├── knows-undirected.cypher │ │ │ │ ├── knows-undirected.sql │ │ │ │ ├── simple-test.cypher │ │ │ │ ├── simple-test.sql │ │ │ │ ├── tag-tagclass.cypher │ │ │ │ └── tag-tagclass.sql │ │ │ ├── local-features │ │ │ │ ├── GTopTests.feature │ │ │ │ └── Local.feature │ │ │ └── sql-queries │ │ │ │ ├── createTables.sql │ │ │ │ ├── purge.sql │ │ │ │ └── utilityFunctions.sql │ │ └── scala │ │ │ └── ingraph │ │ │ └── compiler │ │ │ └── sql │ │ │ ├── CompileSql.scala │ │ │ ├── EmbeddedPostgresWrapper.scala │ │ │ ├── ExportStep.scala │ │ │ ├── ExportSteps.scala │ │ │ ├── GTopExtension.scala │ │ │ ├── IndentationPreservingStringInterpolation.scala │ │ │ ├── PostgreSqlMain.scala │ │ │ ├── SqlCompiler.scala │ │ │ ├── SqlPlan.scala │ │ │ ├── SqlQueries.scala │ │ │ ├── TckScenarioMain.scala │ │ │ ├── Util.scala │ │ │ └── driver │ │ │ ├── SqlDriver.scala │ │ │ ├── SqlSession.scala │ │ │ ├── SqlStatementResult.scala │ │ │ ├── SqlTransaction.scala │ │ │ ├── TypedJsonAdapter.scala │ │ │ └── ValueJsonConversion.scala │ └── test │ │ └── scala │ │ └── ingraph │ │ └── compiler │ │ └── sql │ │ ├── CompileSqlTest.scala │ │ ├── GTopTests.scala │ │ ├── PostgreSqlTest.scala │ │ └── driver │ │ ├── DriverValueToTck.scala │ │ ├── LdbcParameterizedQueriesTest.scala │ │ ├── LdbcTest.scala │ │ ├── Neo4jTckTest.scala │ │ ├── SharedDriver.scala │ │ ├── SharedSqlDriver.scala │ │ ├── SqlDriverTest.scala │ │ ├── TckAdapter.scala │ │ ├── TckTest.scala │ │ ├── TckTestWithCreate.scala │ │ ├── TckValueToDriver.scala │ │ └── ValueJsonConversionTest.scala ├── tck.sql └── test.sqlite ├── docs ├── cypher-queries.md ├── cypher-query-optimization.md ├── cypher-vs-viatra-query-language.md ├── dependencies.md ├── incremental-graph-query-use-cases.md ├── ingraph-goals.md ├── ingraph-workflow.md ├── middleware.md ├── multiple-edges.md ├── multiple-labels.md ├── neo4j-cypher-operators.md ├── non-legacy-grammar-xmls │ ├── README.md │ ├── basic-grammar-non-legacy.xml │ └── cypher-non-legacy.xml ├── opencypher-specification.md ├── opencypher-to-incremental-queries-instances.graphml ├── opencypher-to-incremental-queries-workflow.graphml ├── opencypher-to-incremental-queries-workflow.png ├── optional-match-semantics.md ├── path-semantics.md ├── related-work.md ├── semantics-of-list-comprehension-for-pattern-matching.md ├── spark-catalyst-model.graphml ├── spark-catalyst.md ├── standard-constructs-explained.md ├── standard-constructs.md ├── unwind.md ├── updates-in-relational-algebra.md ├── using-cycli.md └── why-xtext.md ├── driver ├── build.gradle └── src │ ├── main │ ├── java │ │ └── ingraph │ │ │ └── driver │ │ │ ├── CypherDriver.java │ │ │ ├── CypherDriverFactory.java │ │ │ ├── ingraph │ │ │ ├── IngraphDriver.java │ │ │ ├── IngraphSession.java │ │ │ └── IngraphTransaction.java │ │ │ └── neo4j │ │ │ └── Neo4jDriver.java │ └── scala │ │ └── ingraph │ │ └── driver │ │ └── data │ │ ├── IngraphDeltaHandler.scala │ │ ├── IngraphQueryHandler.scala │ │ └── TupleToRecordRepackager.scala │ └── test │ └── java │ └── ingraph │ └── driver │ └── tests │ ├── IngraphDriverTest.java │ └── Neo4jDriverTest.java ├── expression-parser ├── build.gradle └── src │ ├── main │ └── scala │ │ └── ingraph │ │ └── expressionparser │ │ ├── ExpressionParser.scala │ │ └── FunctionLookup.scala │ └── test │ ├── resources │ └── .gitignore │ └── scala │ └── ingraph │ └── expressionparser │ └── ExpressionParserTest.scala ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── graphs ├── .gitignore ├── ldbc-snb-bi │ ├── 10 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 11 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 12 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 13 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 14 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 15 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 16 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 17 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 18 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 19 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 20 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 21 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 22 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 23 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 24 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 25 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── .gitignore │ ├── 01 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 02 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 03 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 04 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 05 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 06 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 07 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 08 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── 09 │ │ ├── README.md │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── parameters │ │ ├── person_0_0.csv │ │ ├── person_email_emailaddress_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_speaks_language_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ └── tagclass_isSubclassOf_tagclass_0_0.csv │ ├── README.md │ ├── convert-to-graphml.sh │ ├── csv-sf01 │ │ ├── .gitignore │ │ └── updateStream_0_0_benchmark.csv │ ├── csv-sf03 │ │ ├── .gitignore │ │ └── updateStream_0_0_benchmark.csv │ ├── csv-sf1 │ │ ├── .gitignore │ │ └── updateStream_0_0_benchmark.csv │ ├── csv-sf10 │ │ ├── .gitignore │ │ └── updateStream_0_0_benchmark.csv │ ├── csv-sf3 │ │ ├── .gitignore │ │ └── updateStream_0_0_benchmark.csv │ ├── csv-sftiny │ │ ├── .gitignore │ │ ├── comment_0_0.csv │ │ ├── comment_hasCreator_person_0_0.csv │ │ ├── comment_hasTag_tag_0_0.csv │ │ ├── comment_isLocatedIn_place_0_0.csv │ │ ├── comment_replyOf_comment_0_0.csv │ │ ├── comment_replyOf_post_0_0.csv │ │ ├── forum_0_0.csv │ │ ├── forum_containerOf_post_0_0.csv │ │ ├── forum_hasMember_person_0_0.csv │ │ ├── forum_hasModerator_person_0_0.csv │ │ ├── forum_hasTag_tag_0_0.csv │ │ ├── organisation_0_0.csv │ │ ├── organisation_isLocatedIn_place_0_0.csv │ │ ├── person_0_0.csv │ │ ├── person_hasInterest_tag_0_0.csv │ │ ├── person_isLocatedIn_place_0_0.csv │ │ ├── person_knows_person_0_0.csv │ │ ├── person_likes_comment_0_0.csv │ │ ├── person_likes_post_0_0.csv │ │ ├── person_studyAt_organisation_0_0.csv │ │ ├── person_workAt_organisation_0_0.csv │ │ ├── place_0_0.csv │ │ ├── place_isPartOf_place_0_0.csv │ │ ├── post_0_0.csv │ │ ├── post_hasCreator_person_0_0.csv │ │ ├── post_hasTag_tag_0_0.csv │ │ ├── post_isLocatedIn_place_0_0.csv │ │ ├── tag_0_0.csv │ │ ├── tag_hasType_tagclass_0_0.csv │ │ ├── tagclass_0_0.csv │ │ ├── tagclass_isSubclassOf_tagclass_0_0.csv │ │ ├── updateStream.properties │ │ ├── updateStream_0_0_benchmark.csv │ │ ├── updateStream_0_0_forum.csv │ │ └── updateStream_0_0_person.csv │ ├── db-sf01 │ │ └── .gitignore │ ├── db-sf03 │ │ └── .gitignore │ ├── db-sf1 │ │ └── .gitignore │ ├── db-sf10 │ │ └── .gitignore │ ├── db-sf3 │ │ └── .gitignore │ ├── db-sftiny.zip │ ├── db-sftiny │ │ └── .gitignore │ ├── delete-neo4j-database.sh │ ├── graphmls │ │ ├── bi-01.graphml │ │ ├── bi-02.graphml │ │ ├── bi-03.graphml │ │ ├── bi-04.graphml │ │ ├── bi-05.graphml │ │ ├── bi-06.graphml │ │ ├── bi-07.graphml │ │ ├── bi-08.graphml │ │ ├── bi-09.graphml │ │ ├── bi-10.graphml │ │ ├── bi-11.graphml │ │ ├── bi-12.graphml │ │ ├── bi-13.graphml │ │ ├── bi-14.graphml │ │ ├── bi-15.graphml │ │ ├── bi-16.graphml │ │ ├── bi-17.graphml │ │ ├── bi-18.graphml │ │ ├── bi-19.graphml │ │ ├── bi-20.graphml │ │ ├── bi-21.graphml │ │ ├── bi-22.graphml │ │ ├── bi-23.graphml │ │ ├── bi-24.graphml │ │ └── bi-25.graphml │ ├── import-to-neo4j.sh │ └── link.sh ├── railway-verification │ ├── diverging.csv │ ├── next.csv │ ├── on.csv │ ├── segment.csv │ ├── straight.csv │ ├── switch.csv │ ├── top.csv │ └── train.csv ├── tpc-h │ ├── .gitignore │ └── download.sh └── trainbenchmark │ ├── railway-inject-1-Region.csv │ ├── railway-inject-1-Route.csv │ ├── railway-inject-1-Segment.csv │ ├── railway-inject-1-Semaphore.csv │ ├── railway-inject-1-Sensor.csv │ ├── railway-inject-1-Switch.csv │ ├── railway-inject-1-SwitchPosition.csv │ ├── railway-inject-1-connectsTo.csv │ ├── railway-inject-1-entry.csv │ ├── railway-inject-1-exit.csv │ ├── railway-inject-1-follows.csv │ ├── railway-inject-1-monitoredBy.csv │ ├── railway-inject-1-requires.csv │ ├── railway-inject-1-target.csv │ ├── railway-repair-1-Region.csv │ ├── railway-repair-1-Route.csv │ ├── railway-repair-1-Segment.csv │ ├── railway-repair-1-Semaphore.csv │ ├── railway-repair-1-Sensor.csv │ ├── railway-repair-1-Switch.csv │ ├── railway-repair-1-SwitchPosition.csv │ ├── railway-repair-1-connectsTo.csv │ ├── railway-repair-1-entry.csv │ ├── railway-repair-1-exit.csv │ ├── railway-repair-1-follows.csv │ ├── railway-repair-1-monitoredBy.csv │ ├── railway-repair-1-requires.csv │ ├── railway-repair-1-target.csv │ ├── railway-repair-2-Region.csv │ ├── railway-repair-2-Route.csv │ ├── railway-repair-2-Segment.csv │ ├── railway-repair-2-Semaphore.csv │ ├── railway-repair-2-Sensor.csv │ ├── railway-repair-2-Switch.csv │ ├── railway-repair-2-SwitchPosition.csv │ ├── railway-repair-2-connectsTo.csv │ ├── railway-repair-2-entry.csv │ ├── railway-repair-2-exit.csv │ ├── railway-repair-2-follows.csv │ ├── railway-repair-2-monitoredBy.csv │ ├── railway-repair-2-requires.csv │ └── railway-repair-2-target.csv ├── indexer ├── build.gradle └── src │ ├── main │ └── scala │ │ └── ingraph │ │ └── ire │ │ ├── Indexer.scala │ │ └── TTupleCreator.scala │ └── test │ └── scala │ └── ingraph │ └── ire │ └── IndexerTest.scala ├── ire-adapter ├── build.gradle └── src │ ├── main │ ├── resources │ │ └── local-features │ │ │ └── Local.feature │ └── scala │ │ └── ingraph │ │ └── ire │ │ ├── EngineFactory.scala │ │ ├── IdParser.scala │ │ └── adapters │ │ ├── AbstractQueryAdapter.scala │ │ ├── IncrementalQueryAdapter.scala │ │ ├── OneTimeQueryAdapter.scala │ │ └── tuplecreators │ │ ├── PullTupleCreator.scala │ │ └── TupleCreatorFactory.scala │ └── test │ └── scala │ └── ingraph │ └── ire │ ├── DataManipulationTest.scala │ ├── EdgeDirectionHandlingTest.scala │ ├── RandomTest.scala │ ├── TckEngineAdapter.scala │ ├── TckEngineExtendedTest.scala │ ├── TckEngineTest.scala │ ├── TrainBenchmarkBatchIntegrationTest.scala │ └── TrainBenchmarkUtils.scala ├── ire ├── build.gradle └── src │ ├── main │ ├── resources │ │ ├── application.conf │ │ └── log4j.xml │ └── scala │ │ └── ingraph │ │ └── ire │ │ ├── collections │ │ ├── BufferMultimap.scala │ │ ├── CounterMultimap.scala │ │ └── SetMultimap.scala │ │ ├── datatypes │ │ └── DataTypes.scala │ │ ├── engine │ │ └── RelationalEngine.scala │ │ ├── inputs │ │ └── inputs.scala │ │ ├── listeners │ │ ├── AddListener.scala │ │ └── ChangeListener.scala │ │ ├── math │ │ └── GenericMath.scala │ │ ├── messages │ │ ├── Forwarder.scala │ │ ├── Messages.scala │ │ └── Terminator.scala │ │ ├── nodes │ │ ├── binary │ │ │ ├── AbstractJoinNode.scala │ │ │ ├── AntiJoinNode.scala │ │ │ ├── BinaryNode.scala │ │ │ ├── JoinNode.scala │ │ │ ├── JoinNodeBase.scala │ │ │ ├── LeftOuterJoinNode.scala │ │ │ ├── TransitiveJoinNode.scala │ │ │ └── UnionNode.scala │ │ └── unary │ │ │ ├── DuplicateEliminationNode.scala │ │ │ ├── MapperNode.scala │ │ │ ├── ProductionNode.scala │ │ │ ├── ProjectionNode.scala │ │ │ ├── SelectionNode.scala │ │ │ ├── SortAndTopNode.scala │ │ │ ├── UnaryNode.scala │ │ │ ├── UnwindNode.scala │ │ │ └── aggregation │ │ │ ├── AggregationNode.scala │ │ │ ├── StatefulAggregate.scala │ │ │ ├── StatefulAverage.scala │ │ │ ├── StatefulCollect.scala │ │ │ ├── StatefulCount.scala │ │ │ ├── StatefulExtreme.scala │ │ │ ├── StatefulSquaredSum.scala │ │ │ ├── StatefulStandardDeviation.scala │ │ │ ├── StatefulStandardDeviationSample.scala │ │ │ └── StatefulSum.scala │ │ ├── stateless │ │ └── unary │ │ │ └── DuplicateEliminationNode.scala │ │ └── util │ │ └── Utils.scala │ └── test │ └── scala │ └── ingraph │ └── ire │ ├── nodes │ ├── InputTransactionFactoryTest.scala │ ├── RelationalEngineIntegrationTest.scala │ ├── SizingTest.scala │ ├── TerminatorTest.scala │ ├── binary │ │ ├── AntiJoinNodeTest.scala │ │ ├── JoinNodeTest.scala │ │ ├── LeftOuterJoinNodeTest.scala │ │ ├── TransitiveJoinNodeTest.scala │ │ └── UnionNodeTest.scala │ ├── collections │ │ ├── CounterMultimapTest.scala │ │ └── IterableMultiMapTest.scala │ └── unary │ │ ├── AggregationNodeTest.scala │ │ ├── DuplicateEliminationNodeTest.scala │ │ ├── ListSelectorNodeTest.scala │ │ ├── MapperTest.scala │ │ ├── MaxNodeTest.scala │ │ ├── MinNodeTest.scala │ │ ├── ProjectionNodeTest.scala │ │ ├── SelectionNodeTest.scala │ │ ├── SortAndTopNodeTest.scala │ │ └── UnwindNodeTest.scala │ ├── stateless │ └── unary │ │ └── DuplicateEliminationNodeTest.scala │ └── util │ └── TestUtil.scala ├── neo4j-util ├── build.gradle └── src │ └── main │ └── java │ └── neo4j │ └── driver │ └── util │ └── GraphPrettyPrinter.java ├── opencypher-report ├── .gitignore ├── Makefile ├── abstract.tex ├── appendix │ └── .gitignore ├── autobreak.sty ├── background.tex ├── bib.bib ├── commands.tex ├── compilation.tex ├── disable-appendix.sh ├── enable-appendix.sh ├── evaluation.tex ├── example-query-plan.tex ├── example-schema-inferencing.tex ├── executive-summary.tex ├── figures │ ├── bme-logo.pdf │ ├── crop │ │ └── crop.sh │ ├── movie-graph.png │ ├── rete │ │ └── rete.pdf │ └── trainbenchmark-instance-model.pdf ├── foundations.tex ├── incremental.tex ├── introduction.tex ├── lineno.sty ├── listings.tex ├── minimal-sandbox.tex ├── opencypher-report.tex ├── opencypher.tex ├── preliminaries.tex ├── related-work.tex ├── schema-inferencing.tex ├── summary.tex ├── texfot.pl ├── titlepage.tex └── xcolor.sty ├── opencypher-tests ├── AggregationAcceptance.feature ├── ColumnNameAcceptance.feature ├── Comparability.feature ├── ComparisonOperatorAcceptance.feature ├── Create.feature ├── CreateAcceptance.feature ├── DeleteAcceptance.feature ├── EqualsAcceptance.feature ├── ExpressionAcceptance.feature ├── FunctionsAcceptance.feature ├── JoinAcceptance.feature ├── KeysAcceptance.feature ├── LabelsAcceptance.feature ├── LargeIntegerEquality.feature ├── ListComprehension.feature ├── Literals.feature ├── MatchAcceptance.feature ├── MatchAcceptance2.feature ├── MatchingSelfRelationships.feature ├── MergeIntoAcceptance.feature ├── MergeNodeAcceptance.feature ├── MergeRelationshipAcceptance.feature ├── MiscellaneousErrorAcceptance.feature ├── NullAcceptance.feature ├── OptionalMatch.feature ├── OptionalMatchAcceptance.feature ├── OrderByAcceptance.feature ├── PatternComprehension.feature ├── README.md ├── RemoveAcceptance.feature ├── ReturnAcceptance.feature ├── ReturnAcceptance2.feature ├── SemanticErrorAcceptance.feature ├── SetAcceptance.feature ├── SkipLimitAcceptance.feature ├── StartingPointAcceptance.feature ├── StartsWithAcceptance.feature ├── SyntaxErrorAcceptance.feature ├── TernaryLogicAcceptance.feature ├── TriadicSelection.feature ├── TypeConversionFunctions.feature ├── UnionAcceptance.feature ├── UnwindAcceptance.feature ├── VarLengthAcceptance.feature ├── VarLengthAcceptance2.feature ├── WhereAcceptance.feature ├── WithAcceptance.feature ├── failing-and-regression-tests.txt ├── generate-failing-and-regression-tests.sh ├── generate-parser-tests.py ├── get-features.sh └── skipped │ ├── LargeCreateQuery.feature │ └── README.md ├── queries ├── Example.cypher ├── adbis-examples │ ├── alldifferent.cypher │ ├── create-graph.cypher │ ├── duplicate-elimination-sorting.cypher │ ├── expand-out.cypher │ ├── get-vertices.cypher │ ├── grouping.cypher │ ├── join.cypher │ ├── multihop.cypher │ ├── multiple-subqueries.cypher │ ├── non-unique-edges.cypher │ ├── selection1.cypher │ ├── selection2.cypher │ ├── triangle.cypher │ └── unwind.cypher ├── fraud-detection │ ├── README.md │ ├── create.cypher │ ├── financial-risk.cypher │ ├── graphconnect-2017-example-1.cypher │ └── shared-contact-information.cypher ├── jsa │ ├── BlockStatement.cypher │ ├── Boolean.cypher │ ├── CallExpressionNoParam.cypher │ ├── CallExpressionParam.cypher │ ├── EqualsZero.cypher │ ├── ExceptionThrown.cypher │ ├── ExpressionStatement.cypher │ ├── FunctionCallStatement.cypher │ ├── FunctionDeclaration.cypher │ ├── FunctionReturnStatement.cypher │ ├── FunctionThrowStatement.cypher │ ├── IfStatementAlternate.cypher │ ├── IfStatementNoAlternate.cypher │ ├── Infinity.cypher │ ├── ListNoItem.cypher │ ├── ListWithItem.cypher │ ├── LiteralX.cypher │ ├── LogicalOr.cypher │ ├── Null.cypher │ ├── Numeric.cypher │ ├── QualifierSystem.cypher │ ├── Read.cypher │ ├── RegExp.cypher │ ├── String.cypher │ ├── TypeSystem.cypher │ ├── VariableDeclaration.cypher │ ├── VariableDeclarationStatement.cypher │ ├── VariableDeclarator.cypher │ ├── VariableInitialization.cypher │ ├── VariableReference.cypher │ ├── Write.cypher │ ├── arithmetics_logarithmArgument.cypher │ ├── arithmetics_squareRootArgument.cypher │ ├── basicimport.cypher │ ├── countcompilationunitnodes.cypher │ ├── countnodes.cypher │ ├── deletegraph.cypher │ ├── divisionByZero_simpleVariable.cypher │ ├── exportAlias_importAlias.cypher │ ├── exportAlias_importDefault.cypher │ ├── exportAlias_importName.cypher │ ├── exportDeclaration_importAlias.cypher │ ├── exportDeclaration_importName.cypher │ ├── exportDefaultDeclaration_importAlias.cypher │ ├── exportDefaultDeclaration_importDefault.cypher │ ├── exportDefaultDeclaration_importName.cypher │ ├── exportDefaultName_importAlias.cypher │ ├── exportDefaultName_importDefault.cypher │ ├── exportDefaultName_importName.cypher │ ├── exportName_importAlias.cypher │ ├── exportName_importName.cypher │ ├── generatecalls.cypher │ ├── getlastcommithash.cypher │ ├── nonInitializedVariable.cypher │ ├── removecfg.cypher │ ├── removefile.cypher │ ├── setcommithash.cypher │ ├── typing.cypher │ ├── unreachableCode.cypher │ ├── unusedExports_exportDeclaration.cypher │ ├── unusedExports_exportDefault.cypher │ ├── unusedExports_exportName_exportAlias.cypher │ └── unusedfunctions.cypher ├── ldbc-snb-bi │ ├── README.md │ ├── bi-01.cypher │ ├── bi-02.cypher │ ├── bi-03.cypher │ ├── bi-04.cypher │ ├── bi-05.cypher │ ├── bi-06.cypher │ ├── bi-07.cypher │ ├── bi-08.cypher │ ├── bi-09.cypher │ ├── bi-10.cypher │ ├── bi-11.cypher │ ├── bi-12.cypher │ ├── bi-13.cypher │ ├── bi-14.cypher │ ├── bi-15.cypher │ ├── bi-16.cypher │ ├── bi-17.cypher │ ├── bi-18.cypher │ ├── bi-19.cypher │ ├── bi-20.cypher │ ├── bi-21.cypher │ ├── bi-22.cypher │ ├── bi-23.cypher │ ├── bi-24.cypher │ ├── bi-25.cypher │ ├── check-feature.sh │ ├── generate-test-class-body.sh │ └── rename.sh ├── ldbc-snb-interactive │ ├── interactive-update-1.cypher │ ├── interactive-update-10.cypher │ ├── interactive-update-11.cypher │ ├── interactive-update-2.cypher │ ├── interactive-update-3.cypher │ ├── interactive-update-4.cypher │ ├── interactive-update-5.cypher │ ├── interactive-update-6.cypher │ ├── interactive-update-7.cypher │ ├── interactive-update-8.cypher │ └── interactive-update-9.cypher ├── movie-database │ ├── README.md │ ├── movie-database-1.cypher │ ├── movie-database-10.cypher │ ├── movie-database-11.cypher │ ├── movie-database-12.cypher │ ├── movie-database-13.cypher │ ├── movie-database-14.cypher │ ├── movie-database-15.cypher │ ├── movie-database-16.cypher │ ├── movie-database-17.cypher │ ├── movie-database-18.cypher │ ├── movie-database-19.cypher │ ├── movie-database-2.cypher │ ├── movie-database-20.cypher │ ├── movie-database-21.cypher │ ├── movie-database-22.cypher │ ├── movie-database-23.cypher │ ├── movie-database-3.cypher │ ├── movie-database-4.cypher │ ├── movie-database-5.cypher │ ├── movie-database-6.cypher │ ├── movie-database-7.cypher │ ├── movie-database-8.cypher │ └── movie-database-9.cypher ├── network-analysis │ ├── 2-network-inventory.cypher │ ├── 3-direct-dependencies-internal.cypher │ ├── 5-most-depended-upon-component.cypher │ ├── 6-crm-dependency-chain.cypher │ ├── 9-hardware-server-removal-impact.cypher │ └── README.md ├── railway-verification │ ├── railway-1.cypher │ ├── railway-2.cypher │ ├── sdl-0-example.cypher │ ├── sdl-1-trailing-the-turnout.cypher │ ├── sdl-2-close-proximity.cypher │ ├── sdl-3-station-with-free-track.cypher │ ├── sdl-4-busy-station.cypher │ └── sdl-5-train-on-station.cypher ├── tck │ ├── AggregationAcceptance_01.cypher │ ├── AggregationAcceptance_02.cypher │ ├── AggregationAcceptance_03.cypher │ ├── AggregationAcceptance_04.cypher │ ├── AggregationAcceptance_05.cypher │ ├── AggregationAcceptance_06.cypher │ ├── AggregationAcceptance_07.cypher │ ├── AggregationAcceptance_08.cypher │ ├── AggregationAcceptance_09.cypher │ ├── AggregationAcceptance_10.cypher │ ├── AggregationAcceptance_11.cypher │ ├── AggregationAcceptance_12.cypher │ ├── AggregationAcceptance_13.cypher │ ├── AggregationAcceptance_14.cypher │ ├── AggregationAcceptance_15.cypher │ ├── AggregationAcceptance_16.cypher │ ├── AggregationAcceptance_17.cypher │ ├── AggregationAcceptance_18.cypher │ ├── AggregationAcceptance_19.cypher │ ├── AggregationAcceptance_20.cypher │ ├── AggregationAcceptance_21.cypher │ ├── AggregationAcceptance_22.cypher │ ├── AggregationAcceptance_24.cypher │ ├── AggregationAcceptance_25.cypher │ ├── AggregationAcceptance_26.cypher │ ├── AggregationAcceptance_27.cypher │ ├── ColumnNameAcceptance_01.cypher │ ├── ColumnNameAcceptance_02.cypher │ ├── ColumnNameAcceptance_03.cypher │ ├── ColumnNameAcceptance_04.cypher │ ├── Comparability_01.cypher │ ├── Comparability_02.cypher │ ├── ComparisonOperatorAcceptance_01.cypher │ ├── ComparisonOperatorAcceptance_02.cypher │ ├── ComparisonOperatorAcceptance_03.cypher │ ├── ComparisonOperatorAcceptance_04.cypher │ ├── ComparisonOperatorAcceptance_05.cypher │ ├── ComparisonOperatorAcceptance_06.cypher │ ├── ComparisonOperatorAcceptance_07.cypher │ ├── ComparisonOperatorAcceptance_08.cypher │ ├── ComparisonOperatorAcceptance_09.cypher │ ├── ComparisonOperatorAcceptance_10.cypher │ ├── EqualsAcceptance_01.cypher │ ├── EqualsAcceptance_02.cypher │ ├── EqualsAcceptance_03.cypher │ ├── EqualsAcceptance_04.cypher │ ├── EqualsAcceptance_05.cypher │ ├── ExpressionAcceptance_01.cypher │ ├── ExpressionAcceptance_02.cypher │ ├── ExpressionAcceptance_03.cypher │ ├── ExpressionAcceptance_04.cypher │ ├── ExpressionAcceptance_05.cypher │ ├── ExpressionAcceptance_06.cypher │ ├── ExpressionAcceptance_08.cypher │ ├── ExpressionAcceptance_10.cypher │ ├── ExpressionAcceptance_11.cypher │ ├── ExpressionAcceptance_12.cypher │ ├── ExpressionAcceptance_13.cypher │ ├── ExpressionAcceptance_14.cypher │ ├── ExpressionAcceptance_15.cypher │ ├── ExpressionAcceptance_16.cypher │ ├── ExpressionAcceptance_17.cypher │ ├── ExpressionAcceptance_18.cypher │ ├── FunctionsAcceptance_01.cypher │ ├── FunctionsAcceptance_02.cypher │ ├── FunctionsAcceptance_03.cypher │ ├── FunctionsAcceptance_04.cypher │ ├── FunctionsAcceptance_05.cypher │ ├── FunctionsAcceptance_06.cypher │ ├── FunctionsAcceptance_07.cypher │ ├── FunctionsAcceptance_08.cypher │ ├── FunctionsAcceptance_09.cypher │ ├── FunctionsAcceptance_10.cypher │ ├── FunctionsAcceptance_11.cypher │ ├── FunctionsAcceptance_12.cypher │ ├── FunctionsAcceptance_13.cypher │ ├── FunctionsAcceptance_14.cypher │ ├── FunctionsAcceptance_15.cypher │ ├── FunctionsAcceptance_16.cypher │ ├── FunctionsAcceptance_17.cypher │ ├── FunctionsAcceptance_18.cypher │ ├── JoinAcceptance_01.cypher │ ├── JoinAcceptance_02.cypher │ ├── KeysAcceptance_01.cypher │ ├── KeysAcceptance_02.cypher │ ├── KeysAcceptance_03.cypher │ ├── KeysAcceptance_04.cypher │ ├── KeysAcceptance_05.cypher │ ├── KeysAcceptance_06.cypher │ ├── KeysAcceptance_07.cypher │ ├── KeysAcceptance_08.cypher │ ├── KeysAcceptance_09.cypher │ ├── LabelsAcceptance_10.cypher │ ├── LargeIntegerEquality_01.cypher │ ├── LargeIntegerEquality_02.cypher │ ├── LargeIntegerEquality_03.cypher │ ├── LargeIntegerEquality_04.cypher │ ├── LargeIntegerEquality_05.cypher │ ├── ListComprehension_01.cypher │ ├── ListComprehension_02.cypher │ ├── ListComprehension_03.cypher │ ├── Literals_01.cypher │ ├── Literals_02.cypher │ ├── Literals_03.cypher │ ├── Literals_04.cypher │ ├── Literals_05.cypher │ ├── Literals_06.cypher │ ├── Literals_07.cypher │ ├── Literals_08.cypher │ ├── Literals_09.cypher │ ├── Literals_10.cypher │ ├── Literals_11.cypher │ ├── MatchAcceptance2_01.cypher │ ├── MatchAcceptance2_02.cypher │ ├── MatchAcceptance2_03.cypher │ ├── MatchAcceptance2_04.cypher │ ├── MatchAcceptance2_05.cypher │ ├── MatchAcceptance2_06.cypher │ ├── MatchAcceptance2_07.cypher │ ├── MatchAcceptance2_08.cypher │ ├── MatchAcceptance2_09.cypher │ ├── MatchAcceptance2_10.cypher │ ├── MatchAcceptance2_11.cypher │ ├── MatchAcceptance2_12.cypher │ ├── MatchAcceptance2_13.cypher │ ├── MatchAcceptance2_14.cypher │ ├── MatchAcceptance2_15.cypher │ ├── MatchAcceptance2_16.cypher │ ├── MatchAcceptance2_17.cypher │ ├── MatchAcceptance2_18.cypher │ ├── MatchAcceptance2_19.cypher │ ├── MatchAcceptance2_20.cypher │ ├── MatchAcceptance2_21.cypher │ ├── MatchAcceptance2_22.cypher │ ├── MatchAcceptance2_23.cypher │ ├── MatchAcceptance2_24.cypher │ ├── MatchAcceptance2_25.cypher │ ├── MatchAcceptance2_26.cypher │ ├── MatchAcceptance2_27.cypher │ ├── MatchAcceptance2_28.cypher │ ├── MatchAcceptance2_29.cypher │ ├── MatchAcceptance2_30.cypher │ ├── MatchAcceptance2_31.cypher │ ├── MatchAcceptance2_32.cypher │ ├── MatchAcceptance2_33.cypher │ ├── MatchAcceptance2_34.cypher │ ├── MatchAcceptance2_35.cypher │ ├── MatchAcceptance2_36.cypher │ ├── MatchAcceptance2_37.cypher │ ├── MatchAcceptance2_38.cypher │ ├── MatchAcceptance2_39.cypher │ ├── MatchAcceptance2_40.cypher │ ├── MatchAcceptance2_41.cypher │ ├── MatchAcceptance2_42.cypher │ ├── MatchAcceptance2_43.cypher │ ├── MatchAcceptance2_44.cypher │ ├── MatchAcceptance2_45.cypher │ ├── MatchAcceptance2_46.cypher │ ├── MatchAcceptance2_47.cypher │ ├── MatchAcceptance2_48.cypher │ ├── MatchAcceptance2_49.cypher │ ├── MatchAcceptance2_50.cypher │ ├── MatchAcceptance2_51.cypher │ ├── MatchAcceptance2_52.cypher │ ├── MatchAcceptance2_53.cypher │ ├── MatchAcceptance2_54.cypher │ ├── MatchAcceptance2_55.cypher │ ├── MatchAcceptance2_56.cypher │ ├── MatchAcceptance2_57.cypher │ ├── MatchAcceptance2_58.cypher │ ├── MatchAcceptance2_59.cypher │ ├── MatchAcceptance2_60.cypher │ ├── MatchAcceptance2_61.cypher │ ├── MatchAcceptance2_62.cypher │ ├── MatchAcceptance2_63.cypher │ ├── MatchAcceptance2_64.cypher │ ├── MatchAcceptance2_65.cypher │ ├── MatchAcceptance2_66.cypher │ ├── MatchAcceptance2_67.cypher │ ├── MatchAcceptance2_68.cypher │ ├── MatchAcceptance2_69.cypher │ ├── MatchAcceptance2_70.cypher │ ├── MatchAcceptance2_71.cypher │ ├── MatchAcceptance2_72.cypher │ ├── MatchAcceptance2_73.cypher │ ├── MatchAcceptance2_74.cypher │ ├── MatchAcceptance2_75.cypher │ ├── MatchAcceptance2_76.cypher │ ├── MatchAcceptance2_77.cypher │ ├── MatchAcceptance2_78.cypher │ ├── MatchAcceptance2_79.cypher │ ├── MatchAcceptance2_80.cypher │ ├── MatchAcceptance2_81.cypher │ ├── MatchAcceptance2_82.cypher │ ├── MatchAcceptance2_83.cypher │ ├── MatchAcceptance2_84.cypher │ ├── MatchAcceptance2_85.cypher │ ├── MatchAcceptance2_86.cypher │ ├── MatchAcceptance2_87.cypher │ ├── MatchAcceptance2_88.cypher │ ├── MatchAcceptance2_89.cypher │ ├── MatchAcceptance2_90.cypher │ ├── MatchAcceptance2_91.cypher │ ├── MatchAcceptance2_92.cypher │ ├── MatchAcceptance2_93.cypher │ ├── MatchAcceptance2_94.cypher │ ├── MatchAcceptance2_95.cypher │ ├── MatchAcceptance2_96.cypher │ ├── MatchAcceptance2_98.cypher │ ├── MatchAcceptance_01.cypher │ ├── MatchAcceptance_02.cypher │ ├── MatchAcceptance_03.cypher │ ├── MatchAcceptance_04.cypher │ ├── MatchAcceptance_05.cypher │ ├── MatchAcceptance_06.cypher │ ├── MatchAcceptance_07.cypher │ ├── MatchAcceptance_08.cypher │ ├── MatchAcceptance_09.cypher │ ├── MatchAcceptance_10.cypher │ ├── MatchAcceptance_11.cypher │ ├── MatchAcceptance_12.cypher │ ├── MatchAcceptance_13.cypher │ ├── MatchAcceptance_14.cypher │ ├── MatchAcceptance_15.cypher │ ├── MatchAcceptance_16.cypher │ ├── MatchAcceptance_17.cypher │ ├── MatchAcceptance_18.cypher │ ├── MatchAcceptance_19.cypher │ ├── MatchAcceptance_20.cypher │ ├── MatchAcceptance_21.cypher │ ├── MatchAcceptance_22.cypher │ ├── MatchAcceptance_23.cypher │ ├── MatchAcceptance_24.cypher │ ├── MatchAcceptance_25.cypher │ ├── MatchAcceptance_26.cypher │ ├── MatchAcceptance_27.cypher │ ├── MatchAcceptance_28.cypher │ ├── MatchAcceptance_29.cypher │ ├── MatchAcceptance_30.cypher │ ├── MatchingSelfRelationships_01.cypher │ ├── MatchingSelfRelationships_02.cypher │ ├── MatchingSelfRelationships_03.cypher │ ├── MatchingSelfRelationships_04.cypher │ ├── MatchingSelfRelationships_05.cypher │ ├── MatchingSelfRelationships_06.cypher │ ├── MatchingSelfRelationships_07.cypher │ ├── MatchingSelfRelationships_08.cypher │ ├── MatchingSelfRelationships_09.cypher │ ├── MatchingSelfRelationships_10.cypher │ ├── MatchingSelfRelationships_11.cypher │ ├── MatchingSelfRelationships_12.cypher │ ├── MatchingSelfRelationships_13.cypher │ ├── MatchingSelfRelationships_14.cypher │ ├── MatchingSelfRelationships_15.cypher │ ├── MatchingSelfRelationships_16.cypher │ ├── MatchingSelfRelationships_17.cypher │ ├── MatchingSelfRelationships_18.cypher │ ├── MatchingSelfRelationships_19.cypher │ ├── OptionalMatchAcceptance_01.cypher │ ├── OptionalMatchAcceptance_02.cypher │ ├── OptionalMatchAcceptance_03.cypher │ ├── OptionalMatchAcceptance_04.cypher │ ├── OptionalMatchAcceptance_05.cypher │ ├── OptionalMatchAcceptance_06.cypher │ ├── OptionalMatchAcceptance_07.cypher │ ├── OptionalMatchAcceptance_08.cypher │ ├── OptionalMatchAcceptance_09.cypher │ ├── OptionalMatchAcceptance_10.cypher │ ├── OptionalMatchAcceptance_11.cypher │ ├── OptionalMatchAcceptance_12.cypher │ ├── OptionalMatchAcceptance_13.cypher │ ├── OptionalMatchAcceptance_14.cypher │ ├── OptionalMatchAcceptance_15.cypher │ ├── OptionalMatchAcceptance_16.cypher │ ├── OptionalMatchAcceptance_17.cypher │ ├── OptionalMatchAcceptance_18.cypher │ ├── OptionalMatchAcceptance_19.cypher │ ├── OptionalMatchAcceptance_20.cypher │ ├── OptionalMatchAcceptance_21.cypher │ ├── OptionalMatchAcceptance_22.cypher │ ├── OptionalMatch_01.cypher │ ├── OptionalMatch_02.cypher │ ├── OptionalMatch_03.cypher │ ├── OrderByAcceptance_01.cypher │ ├── OrderByAcceptance_02.cypher │ ├── OrderByAcceptance_03.cypher │ ├── OrderByAcceptance_04.cypher │ ├── OrderByAcceptance_05.cypher │ ├── OrderByAcceptance_06.cypher │ ├── OrderByAcceptance_07.cypher │ ├── OrderByAcceptance_08.cypher │ ├── OrderByAcceptance_09.cypher │ ├── OrderByAcceptance_10.cypher │ ├── OrderByAcceptance_11.cypher │ ├── OrderByAcceptance_12.cypher │ ├── OrderByAcceptance_13.cypher │ ├── OrderByAcceptance_14.cypher │ ├── OrderByAcceptance_15.cypher │ ├── OrderByAcceptance_16.cypher │ ├── PatternComprehension_01.cypher │ ├── PatternComprehension_02.cypher │ ├── PatternComprehension_03.cypher │ ├── PatternComprehension_04.cypher │ ├── PatternComprehension_05.cypher │ ├── PatternComprehension_06.cypher │ ├── PatternComprehension_07.cypher │ ├── PatternComprehension_08.cypher │ ├── PatternComprehension_09.cypher │ ├── PatternComprehension_10.cypher │ ├── PatternComprehension_11.cypher │ ├── PatternComprehension_12.cypher │ ├── PatternComprehension_13.cypher │ ├── PatternComprehension_14.cypher │ ├── PatternComprehension_15.cypher │ ├── ReturnAcceptance2_05.cypher │ ├── ReturnAcceptance2_06.cypher │ ├── ReturnAcceptance2_07.cypher │ ├── ReturnAcceptance2_08.cypher │ ├── ReturnAcceptance2_09.cypher │ ├── ReturnAcceptance2_11.cypher │ ├── ReturnAcceptance2_12.cypher │ ├── ReturnAcceptance2_13.cypher │ ├── ReturnAcceptance2_14.cypher │ ├── ReturnAcceptance2_15.cypher │ ├── ReturnAcceptance2_16.cypher │ ├── ReturnAcceptance2_17.cypher │ ├── ReturnAcceptance2_19.cypher │ ├── ReturnAcceptance2_20.cypher │ ├── ReturnAcceptance2_21.cypher │ ├── ReturnAcceptance2_22.cypher │ ├── ReturnAcceptance2_23.cypher │ ├── ReturnAcceptance2_24.cypher │ ├── ReturnAcceptance2_25.cypher │ ├── ReturnAcceptance2_26.cypher │ ├── ReturnAcceptance2_27.cypher │ ├── ReturnAcceptance2_29.cypher │ ├── ReturnAcceptance2_30.cypher │ ├── ReturnAcceptance2_31.cypher │ ├── ReturnAcceptance2_32.cypher │ ├── ReturnAcceptance2_33.cypher │ ├── ReturnAcceptance2_34.cypher │ ├── ReturnAcceptance2_35.cypher │ ├── ReturnAcceptance2_36.cypher │ ├── ReturnAcceptance_01.cypher │ ├── ReturnAcceptance_02.cypher │ ├── ReturnAcceptance_03.cypher │ ├── ReturnAcceptance_04.cypher │ ├── ReturnAcceptance_05.cypher │ ├── ReturnAcceptance_06.cypher │ ├── ReturnAcceptance_07.cypher │ ├── ReturnAcceptance_08.cypher │ ├── ReturnAcceptance_09.cypher │ ├── ReturnAcceptance_10.cypher │ ├── ReturnAcceptance_11.cypher │ ├── ReturnAcceptance_12.cypher │ ├── ReturnAcceptance_13.cypher │ ├── ReturnAcceptance_14.cypher │ ├── ReturnAcceptance_15.cypher │ ├── SemanticErrorAcceptance_01.cypher │ ├── SemanticErrorAcceptance_02.cypher │ ├── SemanticErrorAcceptance_04.cypher │ ├── SkipLimitAcceptance_01.cypher │ ├── SkipLimitAcceptance_02.cypher │ ├── StartingPointAcceptance_01.cypher │ ├── StartingPointAcceptance_02.cypher │ ├── StartingPointAcceptance_03.cypher │ ├── StartsWithAcceptance_01.cypher │ ├── StartsWithAcceptance_02.cypher │ ├── StartsWithAcceptance_03.cypher │ ├── StartsWithAcceptance_04.cypher │ ├── StartsWithAcceptance_05.cypher │ ├── StartsWithAcceptance_06.cypher │ ├── StartsWithAcceptance_07.cypher │ ├── StartsWithAcceptance_08.cypher │ ├── StartsWithAcceptance_09.cypher │ ├── StartsWithAcceptance_10.cypher │ ├── StartsWithAcceptance_11.cypher │ ├── StartsWithAcceptance_12.cypher │ ├── StartsWithAcceptance_13.cypher │ ├── StartsWithAcceptance_14.cypher │ ├── StartsWithAcceptance_15.cypher │ ├── StartsWithAcceptance_16.cypher │ ├── StartsWithAcceptance_17.cypher │ ├── StartsWithAcceptance_18.cypher │ ├── StartsWithAcceptance_19.cypher │ ├── StartsWithAcceptance_20.cypher │ ├── StartsWithAcceptance_21.cypher │ ├── StartsWithAcceptance_22.cypher │ ├── StartsWithAcceptance_23.cypher │ ├── StartsWithAcceptance_24.cypher │ ├── TernaryLogicAcceptance_01.cypher │ ├── TernaryLogicAcceptance_02.cypher │ ├── TernaryLogicAcceptance_03.cypher │ ├── TernaryLogicAcceptance_04.cypher │ ├── TernaryLogicAcceptance_05.cypher │ ├── TriadicSelection_01.cypher │ ├── TriadicSelection_02.cypher │ ├── TriadicSelection_03.cypher │ ├── TriadicSelection_04.cypher │ ├── TriadicSelection_05.cypher │ ├── TriadicSelection_06.cypher │ ├── TriadicSelection_07.cypher │ ├── TriadicSelection_08.cypher │ ├── TriadicSelection_09.cypher │ ├── TriadicSelection_10.cypher │ ├── TriadicSelection_11.cypher │ ├── TriadicSelection_12.cypher │ ├── TriadicSelection_13.cypher │ ├── TriadicSelection_14.cypher │ ├── TriadicSelection_15.cypher │ ├── TriadicSelection_16.cypher │ ├── TriadicSelection_17.cypher │ ├── TriadicSelection_18.cypher │ ├── TriadicSelection_19.cypher │ ├── TypeConversionFunctions_01.cypher │ ├── TypeConversionFunctions_02.cypher │ ├── TypeConversionFunctions_03.cypher │ ├── TypeConversionFunctions_04.cypher │ ├── TypeConversionFunctions_05.cypher │ ├── TypeConversionFunctions_06.cypher │ ├── TypeConversionFunctions_07.cypher │ ├── TypeConversionFunctions_08.cypher │ ├── TypeConversionFunctions_09.cypher │ ├── TypeConversionFunctions_10.cypher │ ├── TypeConversionFunctions_11.cypher │ ├── TypeConversionFunctions_12.cypher │ ├── TypeConversionFunctions_13.cypher │ ├── TypeConversionFunctions_14.cypher │ ├── TypeConversionFunctions_15.cypher │ ├── TypeConversionFunctions_16.cypher │ ├── TypeConversionFunctions_17.cypher │ ├── TypeConversionFunctions_18.cypher │ ├── TypeConversionFunctions_19.cypher │ ├── TypeConversionFunctions_20.cypher │ ├── TypeConversionFunctions_21.cypher │ ├── TypeConversionFunctions_22.cypher │ ├── TypeConversionFunctions_23.cypher │ ├── TypeConversionFunctions_24.cypher │ ├── UnionAcceptance_01.cypher │ ├── UnionAcceptance_02.cypher │ ├── UnionAcceptance_03.cypher │ ├── UnionAcceptance_04.cypher │ ├── UnionAcceptance_05.cypher │ ├── UnwindAcceptance_01.cypher │ ├── UnwindAcceptance_02.cypher │ ├── UnwindAcceptance_03.cypher │ ├── UnwindAcceptance_04.cypher │ ├── UnwindAcceptance_05.cypher │ ├── UnwindAcceptance_07.cypher │ ├── UnwindAcceptance_08.cypher │ ├── UnwindAcceptance_09.cypher │ ├── UnwindAcceptance_10.cypher │ ├── UnwindAcceptance_11.cypher │ ├── UnwindAcceptance_12.cypher │ ├── UnwindAcceptance_13.cypher │ ├── VarLengthAcceptance2_01.cypher │ ├── VarLengthAcceptance_01.cypher │ ├── VarLengthAcceptance_02.cypher │ ├── VarLengthAcceptance_03.cypher │ ├── VarLengthAcceptance_04.cypher │ ├── VarLengthAcceptance_05.cypher │ ├── VarLengthAcceptance_06.cypher │ ├── VarLengthAcceptance_07.cypher │ ├── VarLengthAcceptance_08.cypher │ ├── VarLengthAcceptance_09.cypher │ ├── VarLengthAcceptance_10.cypher │ ├── VarLengthAcceptance_11.cypher │ ├── VarLengthAcceptance_12.cypher │ ├── VarLengthAcceptance_13.cypher │ ├── VarLengthAcceptance_14.cypher │ ├── VarLengthAcceptance_15.cypher │ ├── VarLengthAcceptance_16.cypher │ ├── VarLengthAcceptance_17.cypher │ ├── VarLengthAcceptance_18.cypher │ ├── VarLengthAcceptance_19.cypher │ ├── VarLengthAcceptance_20.cypher │ ├── VarLengthAcceptance_21.cypher │ ├── VarLengthAcceptance_22.cypher │ ├── VarLengthAcceptance_23.cypher │ ├── VarLengthAcceptance_24.cypher │ ├── VarLengthAcceptance_25.cypher │ ├── VarLengthAcceptance_26.cypher │ ├── VarLengthAcceptance_27.cypher │ ├── VarLengthAcceptance_28.cypher │ ├── VarLengthAcceptance_29.cypher │ ├── WhereAcceptance_01.cypher │ ├── WithAcceptance_01.cypher │ ├── WithAcceptance_02.cypher │ ├── WithAcceptance_03.cypher │ ├── WithAcceptance_04.cypher │ ├── WithAcceptance_05.cypher │ ├── WithAcceptance_06.cypher │ ├── WithAcceptance_07.cypher │ ├── WithAcceptance_08.cypher │ ├── WithAcceptance_09.cypher │ ├── WithAcceptance_10.cypher │ ├── WithAcceptance_11.cypher │ ├── WithAcceptance_12.cypher │ ├── WithAcceptance_13.cypher │ ├── WithAcceptance_14.cypher │ ├── WithAcceptance_15.cypher │ ├── WithAcceptance_16.cypher │ └── WithAcceptance_17.cypher ├── trainbenchmark-simple │ ├── ConnectedSegments.cypher │ ├── PosLength.cypher │ ├── RouteSensor.cypher │ ├── RouteSensorPositive.cypher │ ├── SemaphoreNeighbor.cypher │ ├── SwitchMonitored.cypher │ └── SwitchSet.cypher └── trainbenchmark │ ├── ConnectedSegments.cypher │ ├── PosLength.cypher │ ├── RouteSensor.cypher │ ├── RouteSensorPositive.cypher │ ├── SemaphoreNeighbor.cypher │ ├── SwitchMonitored.cypher │ ├── SwitchSet-simple-return.cypher │ └── SwitchSet.cypher ├── results └── .gitignore ├── scripts ├── copy-opencypher-tests.sh ├── deploy.sh ├── generate-and-deploy-report.sh ├── get-slizaa.sh ├── quick-test.sh ├── smoke-test.sh └── travis-tex-run-required.sh ├── settings.gradle ├── site ├── .gitignore ├── _config.yml ├── _includes │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── icon-github.html │ ├── icon-github.svg │ ├── icon-twitter.html │ └── icon-twitter.svg ├── _layouts │ └── default.html ├── _sass │ ├── _base.scss │ ├── _layout.scss │ └── _syntax-highlighting.scss ├── css │ └── main.scss ├── img │ └── Big-Data-Landscape-2016-v18-FINAL.png ├── index.md └── pub │ ├── lucz-soma-bsc.pdf │ ├── minisy2016-sharded-joins-for-scalable-incremental-graph-queries.pdf │ ├── models2014-incqueryd.pdf │ ├── opencypher-report.pdf.md │ ├── sdl2017-opencypher-mde.pdf │ ├── stein-daniel-msc.pdf │ └── stein-daniel-static-analysis.pdf ├── tests ├── README.md ├── benchmark.sh ├── build.gradle ├── run.sh └── src │ ├── main │ └── scala │ │ ├── ingraph │ │ ├── BenchmarkMain.scala │ │ ├── tck │ │ │ └── TckTestRunner.scala │ │ ├── testrunners │ │ │ ├── IngraphTestRunner.scala │ │ │ └── Neo4jTestRunner.scala │ │ └── tests │ │ │ ├── LdbcSnbTestCase.scala │ │ │ └── TestCase.scala │ │ └── ldbc │ │ ├── LdbcUpdateLoader.scala │ │ └── LdbcUpdates.scala │ └── test │ └── scala │ ├── ldbc │ └── LdbcUpdateLoaderTest.scala │ └── tests │ └── BiValidationTest.scala └── visualization ├── .gitignore ├── README.md ├── inputs ├── relalg-commands.tex └── relalg-packages.tex ├── ldbc-snb-bi └── .gitignore ├── queries └── .gitignore ├── query-plans ├── .gitignore ├── bootstrap.min.css ├── convert.sh ├── template-footer.html └── template-header.html ├── sandbox ├── .gitignore └── Makefile ├── tck └── .gitignore └── trainbenchmark └── .gitignore /compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | /src/main/scala/ingraph/sandbox 3 | -------------------------------------------------------------------------------- /cypher-to-sql/ldbc_snb_implementations/postgres/test-data/.gitignore: -------------------------------------------------------------------------------- 1 | *-postgres.csv 2 | -------------------------------------------------------------------------------- /graphs/.gitignore: -------------------------------------------------------------------------------- 1 | # we usually extract database instances from zips 2 | *.zip 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/.gitignore: -------------------------------------------------------------------------------- 1 | !db-sftiny.zip 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/README.md: -------------------------------------------------------------------------------- 1 | :param date: 20120214153210447 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/parameters: -------------------------------------------------------------------------------- 1 | { 2 | "date": 20110721220000000 3 | } 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | 0|2 3 | 1|3 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 2|0 3 | 3|1 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/parameters: -------------------------------------------------------------------------------- 1 | { 2 | "year": 2011, 3 | "month": 6 4 | } 5 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 99|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/README.md: -------------------------------------------------------------------------------- 1 | :param { country: 'Austria', tagClass: 'Person' } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | 99|55 3 | 99|44 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | 99|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/parameters: -------------------------------------------------------------------------------- 1 | { 2 | "tagClass": "Person", 3 | "country": "Austria" 4 | } 5 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | 88|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 66|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 55|33 3 | 44|22 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | 33|11 3 | 22|11 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | 99|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/parameters: -------------------------------------------------------------------------------- 1 | { "country": "India" } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | 88|55 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 55|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 77|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | 77|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/parameters: -------------------------------------------------------------------------------- 1 | { "tag": "Hamid_Karzai" } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 88|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 88|55 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/README.md: -------------------------------------------------------------------------------- 1 | :param { tag: 'Wolfgang_Amadeus_Mozart' } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | 99|33 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/parameters: -------------------------------------------------------------------------------- 1 | { 2 | "tag": "Wolfgang_Amadeus_Mozart" 3 | } 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 44|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 44|33 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/README.md: -------------------------------------------------------------------------------- 1 | :param { tag: 'Wolfgang_Amadeus_Mozart' } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | 99|66 3 | 88|55 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | 88|99 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 88|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/parameters: -------------------------------------------------------------------------------- 1 | { 2 | "tag": "Wolfgang_Amadeus_Mozart" 3 | } 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 77|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | 99|88 3 | 99|77 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 88|44 3 | 77|33 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | 44|22 3 | 33|11 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | 99|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 77|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 77|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | 99|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | 99|11 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|55 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | 88|1 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 44|55 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 33|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 33|22 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/parameters: -------------------------------------------------------------------------------- 1 | { 2 | "date": 20110817060540594, 3 | "likeThreshold": 1 4 | } 5 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 66|99 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/parameters: -------------------------------------------------------------------------------- 1 | { "country": "India" } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 99|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 77|44 3 | 66|44 4 | 55|33 5 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | 99|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 66|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/parameters: -------------------------------------------------------------------------------- 1 | { "country": "India" } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 66|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 66|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 55|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 55|44 3 | 55|33 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | 44|22 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/README.md: -------------------------------------------------------------------------------- 1 | :param { country: 'Austria' } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/parameters: -------------------------------------------------------------------------------- 1 | { 2 | "country": "Austria" 3 | } 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 55|66 3 | 44|66 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | 99|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | 99|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|66 3 | 88|55 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | 99|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|44 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | 88|33 3 | 77|22 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 44|55 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | 33|0 3 | 22|11 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/parameters: -------------------------------------------------------------------------------- 1 | { "tagClasses": ["Person"] } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 99|77 3 | 88|66 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | 77|55 3 | 66|44 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 55|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|11 3 | 88|0 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/parameters: -------------------------------------------------------------------------------- 1 | { 2 | "country1": "India", 3 | "country2": "USA" 4 | } 5 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 44|55 3 | 22|33 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 0|77 3 | 11|66 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/parameters: -------------------------------------------------------------------------------- 1 | { "country": "India" } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | 99|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 77|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 55|99 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | 55|66 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/parameters: -------------------------------------------------------------------------------- 1 | { "tagClass": "OfficeHolder" } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/person_knows_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Person)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | 77|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | 66|55 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | 66|77 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | 55|44 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/comment_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/comment_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/comment_replyOf_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Comment) 2 | 99|88 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/comment_replyOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|33 3 | 88|22 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/forum_containerOf_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Post) 2 | 77|33 3 | 77|22 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/forum_hasMember_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person)|joinDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/forum_hasModerator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Person) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/forum_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Forum)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/organisation_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Organisation)|:LABEL|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/person_hasInterest_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/person_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/person_likes_comment_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Comment)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/person_likes_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Person)|:END_ID(Post)|creationDate:LONG 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/place_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Place)|name:STRING|url:STRING|:LABEL 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/place_isPartOf_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Place)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/post_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Person) 2 | 33|55 3 | 22|44 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/post_hasTag_tag_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Tag) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/post_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Post)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/tag_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Tag)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/tag_hasType_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Tag)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(TagClass)|name:STRING|url:STRING 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/tagclass_isSubclassOf_tagclass_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(TagClass)|:END_ID(TagClass) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/csv-sf01/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !updateStream_*_benchmark.csv 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/csv-sf03/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !updateStream_*_benchmark.csv 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/csv-sf1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !updateStream_*_benchmark.csv 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/csv-sf10/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !updateStream_*_benchmark.csv 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/csv-sf3/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !updateStream_*_benchmark.csv 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/csv-sftiny/.gitignore: -------------------------------------------------------------------------------- 1 | *.crc 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/db-sf01/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/db-sf03/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/db-sf1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/db-sf10/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/db-sf3/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/db-sftiny/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/delete-neo4j-database.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf $NEO4J_DB_DIR 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/link.sh: -------------------------------------------------------------------------------- 1 | #'/bin/bash 2 | 3 | # Usage: