├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── 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 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/README.md -------------------------------------------------------------------------------- /compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | /src/main/scala/ingraph/sandbox 3 | -------------------------------------------------------------------------------- /compiler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/compiler/build.gradle -------------------------------------------------------------------------------- /csv-loader/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/csv-loader/build.gradle -------------------------------------------------------------------------------- /cypher-to-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/cypher-to-sql/README.md -------------------------------------------------------------------------------- /cypher-to-sql/TransitiveJoin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/cypher-to-sql/TransitiveJoin.sql -------------------------------------------------------------------------------- /cypher-to-sql/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/cypher-to-sql/build.gradle -------------------------------------------------------------------------------- /cypher-to-sql/export.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/cypher-to-sql/export.cypher -------------------------------------------------------------------------------- /cypher-to-sql/ldbc_snb_implementations/postgres/test-data/.gitignore: -------------------------------------------------------------------------------- 1 | *-postgres.csv 2 | -------------------------------------------------------------------------------- /cypher-to-sql/plans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/cypher-to-sql/plans.txt -------------------------------------------------------------------------------- /cypher-to-sql/postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/cypher-to-sql/postgres.md -------------------------------------------------------------------------------- /cypher-to-sql/tck.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/cypher-to-sql/tck.sql -------------------------------------------------------------------------------- /cypher-to-sql/test.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/cypher-to-sql/test.sqlite -------------------------------------------------------------------------------- /docs/cypher-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/cypher-queries.md -------------------------------------------------------------------------------- /docs/cypher-query-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/cypher-query-optimization.md -------------------------------------------------------------------------------- /docs/cypher-vs-viatra-query-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/cypher-vs-viatra-query-language.md -------------------------------------------------------------------------------- /docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/dependencies.md -------------------------------------------------------------------------------- /docs/ingraph-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/ingraph-goals.md -------------------------------------------------------------------------------- /docs/ingraph-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/ingraph-workflow.md -------------------------------------------------------------------------------- /docs/middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/middleware.md -------------------------------------------------------------------------------- /docs/multiple-edges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/multiple-edges.md -------------------------------------------------------------------------------- /docs/multiple-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/multiple-labels.md -------------------------------------------------------------------------------- /docs/neo4j-cypher-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/neo4j-cypher-operators.md -------------------------------------------------------------------------------- /docs/non-legacy-grammar-xmls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/non-legacy-grammar-xmls/README.md -------------------------------------------------------------------------------- /docs/opencypher-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/opencypher-specification.md -------------------------------------------------------------------------------- /docs/optional-match-semantics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/optional-match-semantics.md -------------------------------------------------------------------------------- /docs/path-semantics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/path-semantics.md -------------------------------------------------------------------------------- /docs/related-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/related-work.md -------------------------------------------------------------------------------- /docs/spark-catalyst-model.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/spark-catalyst-model.graphml -------------------------------------------------------------------------------- /docs/spark-catalyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/spark-catalyst.md -------------------------------------------------------------------------------- /docs/standard-constructs-explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/standard-constructs-explained.md -------------------------------------------------------------------------------- /docs/standard-constructs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/standard-constructs.md -------------------------------------------------------------------------------- /docs/unwind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/unwind.md -------------------------------------------------------------------------------- /docs/updates-in-relational-algebra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/updates-in-relational-algebra.md -------------------------------------------------------------------------------- /docs/using-cycli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/using-cycli.md -------------------------------------------------------------------------------- /docs/why-xtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/docs/why-xtext.md -------------------------------------------------------------------------------- /driver/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/driver/build.gradle -------------------------------------------------------------------------------- /expression-parser/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/expression-parser/build.gradle -------------------------------------------------------------------------------- /expression-parser/src/test/resources/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/gradlew.bat -------------------------------------------------------------------------------- /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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/01/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/01/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/01/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/01/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/01/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/01/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/01/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/01/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/02/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/02/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/02/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/02/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/02/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/02/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/02/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/02/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/03/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/03/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/03/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/03/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/03/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/03/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/03/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/03/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/README.md: -------------------------------------------------------------------------------- 1 | :param { country: 'Austria', tagClass: 'Person' } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/04/comment_0_0.csv -------------------------------------------------------------------------------- /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_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/forum_0_0.csv: -------------------------------------------------------------------------------- 1 | id:ID(Forum)|title:STRING|creationDate:LONG 2 | 99|Classical music|20100214153220447 3 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/04/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/04/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/04/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/04/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/04/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/04/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/04/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/05/comment_0_0.csv -------------------------------------------------------------------------------- /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_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/05/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/05/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/05/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/05/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/05/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/05/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/06/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/06/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/06/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/06/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/06/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/06/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/06/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/README.md: -------------------------------------------------------------------------------- 1 | :param { tag: 'Wolfgang_Amadeus_Mozart' } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/07/comment_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | 99|77 3 | 88|66 4 | -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/07/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/07/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/07/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/07/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/07/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/07/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/README.md: -------------------------------------------------------------------------------- 1 | :param { tag: 'Wolfgang_Amadeus_Mozart' } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/08/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/08/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/08/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/08/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/08/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/08/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/08/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/09/comment_0_0.csv -------------------------------------------------------------------------------- /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_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 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/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/09/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/09/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/09/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/09/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/09/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/09/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/09/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/10/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/10/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/10/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/10/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/10/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/10/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/10/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/10/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/11/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/11/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/11/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/11/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/11/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/11/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/11/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/11/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/12/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/12/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/12/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/12/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/12/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/12/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/12/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/12/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/13/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/13/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/13/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/13/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/13/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/13/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/13/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/14/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/14/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/14/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/14/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/14/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/14/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/14/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/14/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/15/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/15/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/15/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/15/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/15/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/15/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/15/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/16/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/16/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/16/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/16/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/16/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/16/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/16/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/16/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/README.md: -------------------------------------------------------------------------------- 1 | :param { country: 'Austria' } 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/17/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/17/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/17/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/17/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/17/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/17/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/17/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/18/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/18/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/18/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/18/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/18/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/18/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/18/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/18/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/19/comment_0_0.csv -------------------------------------------------------------------------------- /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_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|44 3 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/forum_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/19/forum_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/19/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/19/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/19/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/19/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/19/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/19/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/19/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/20/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/20/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/20/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/20/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/20/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/20/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/20/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/21/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/21/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/21/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/21/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/21/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/21/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/21/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/21/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/22/comment_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | 99|77 3 | 88|66 4 | -------------------------------------------------------------------------------- /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_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/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/22/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/22/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/22/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/22/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/22/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/22/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/22/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/23/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/23/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/23/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/23/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/23/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/23/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/23/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/24/comment_0_0.csv -------------------------------------------------------------------------------- /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_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/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_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/24/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/person_speaks_language_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|language 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/place_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/24/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/24/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/24/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/24/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/24/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/comment_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/25/comment_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/comment_hasCreator_person_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Person) 2 | 99|55 3 | 88|44 4 | -------------------------------------------------------------------------------- /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_post_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Comment)|:END_ID(Post) 2 | 99|33 3 | 88|22 4 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/organisation_isLocatedIn_place_0_0.csv: -------------------------------------------------------------------------------- 1 | :START_ID(Organisation)|:END_ID(Place) 2 | -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/25/parameters -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/person_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/25/person_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/person_email_emailaddress_0_0.csv: -------------------------------------------------------------------------------- 1 | Person.id|email 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/25/place_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/post_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/25/post_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/tag_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/25/tag_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/25/tagclass_0_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/25/tagclass_0_0.csv -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/README.md -------------------------------------------------------------------------------- /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.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/db-sftiny.zip -------------------------------------------------------------------------------- /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/import-to-neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/ldbc-snb-bi/import-to-neo4j.sh -------------------------------------------------------------------------------- /graphs/ldbc-snb-bi/link.sh: -------------------------------------------------------------------------------- 1 | #'/bin/bash 2 | 3 | # Usage: 4 | 5 | ln -s $1 sf$2 6 | -------------------------------------------------------------------------------- /graphs/railway-verification/next.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/railway-verification/next.csv -------------------------------------------------------------------------------- /graphs/railway-verification/on.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/railway-verification/on.csv -------------------------------------------------------------------------------- /graphs/railway-verification/segment.csv: -------------------------------------------------------------------------------- 1 | :ID(Segment),name:STRING 2 | 1,a 3 | 2,b 4 | 3,c 5 | 4,d 6 | 5,e 7 | 6,f 8 | 7,g 9 | -------------------------------------------------------------------------------- /graphs/railway-verification/switch.csv: -------------------------------------------------------------------------------- 1 | :ID(Switch),id:INT,position:STRING 2 | 1,1,diverging 3 | -------------------------------------------------------------------------------- /graphs/railway-verification/top.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/railway-verification/top.csv -------------------------------------------------------------------------------- /graphs/railway-verification/train.csv: -------------------------------------------------------------------------------- 1 | :ID(Train),number:INT 2 | 1,1 3 | 2,2 4 | 3,3 5 | -------------------------------------------------------------------------------- /graphs/tpc-h/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /graphs/tpc-h/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/graphs/tpc-h/download.sh -------------------------------------------------------------------------------- /indexer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/indexer/build.gradle -------------------------------------------------------------------------------- /ire-adapter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/ire-adapter/build.gradle -------------------------------------------------------------------------------- /ire/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/ire/build.gradle -------------------------------------------------------------------------------- /ire/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/ire/src/main/resources/application.conf -------------------------------------------------------------------------------- /ire/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/ire/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /neo4j-util/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/neo4j-util/build.gradle -------------------------------------------------------------------------------- /opencypher-report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/.gitignore -------------------------------------------------------------------------------- /opencypher-report/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/Makefile -------------------------------------------------------------------------------- /opencypher-report/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/abstract.tex -------------------------------------------------------------------------------- /opencypher-report/appendix/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | -------------------------------------------------------------------------------- /opencypher-report/autobreak.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/autobreak.sty -------------------------------------------------------------------------------- /opencypher-report/background.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opencypher-report/bib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/bib.bib -------------------------------------------------------------------------------- /opencypher-report/commands.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/commands.tex -------------------------------------------------------------------------------- /opencypher-report/compilation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/compilation.tex -------------------------------------------------------------------------------- /opencypher-report/disable-appendix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/disable-appendix.sh -------------------------------------------------------------------------------- /opencypher-report/enable-appendix.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -f disable-appendix.tex 4 | -------------------------------------------------------------------------------- /opencypher-report/evaluation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/evaluation.tex -------------------------------------------------------------------------------- /opencypher-report/executive-summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/executive-summary.tex -------------------------------------------------------------------------------- /opencypher-report/figures/bme-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/figures/bme-logo.pdf -------------------------------------------------------------------------------- /opencypher-report/figures/crop/crop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/figures/crop/crop.sh -------------------------------------------------------------------------------- /opencypher-report/figures/rete/rete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/figures/rete/rete.pdf -------------------------------------------------------------------------------- /opencypher-report/foundations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/foundations.tex -------------------------------------------------------------------------------- /opencypher-report/incremental.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/incremental.tex -------------------------------------------------------------------------------- /opencypher-report/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/introduction.tex -------------------------------------------------------------------------------- /opencypher-report/lineno.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/lineno.sty -------------------------------------------------------------------------------- /opencypher-report/listings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/listings.tex -------------------------------------------------------------------------------- /opencypher-report/minimal-sandbox.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/minimal-sandbox.tex -------------------------------------------------------------------------------- /opencypher-report/opencypher-report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/opencypher-report.tex -------------------------------------------------------------------------------- /opencypher-report/opencypher.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/opencypher.tex -------------------------------------------------------------------------------- /opencypher-report/preliminaries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/preliminaries.tex -------------------------------------------------------------------------------- /opencypher-report/related-work.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/related-work.tex -------------------------------------------------------------------------------- /opencypher-report/summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/summary.tex -------------------------------------------------------------------------------- /opencypher-report/texfot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/texfot.pl -------------------------------------------------------------------------------- /opencypher-report/titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/titlepage.tex -------------------------------------------------------------------------------- /opencypher-report/xcolor.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-report/xcolor.sty -------------------------------------------------------------------------------- /opencypher-tests/Comparability.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/Comparability.feature -------------------------------------------------------------------------------- /opencypher-tests/Create.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/Create.feature -------------------------------------------------------------------------------- /opencypher-tests/JoinAcceptance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/JoinAcceptance.feature -------------------------------------------------------------------------------- /opencypher-tests/KeysAcceptance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/KeysAcceptance.feature -------------------------------------------------------------------------------- /opencypher-tests/Literals.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/Literals.feature -------------------------------------------------------------------------------- /opencypher-tests/NullAcceptance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/NullAcceptance.feature -------------------------------------------------------------------------------- /opencypher-tests/OptionalMatch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/OptionalMatch.feature -------------------------------------------------------------------------------- /opencypher-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/README.md -------------------------------------------------------------------------------- /opencypher-tests/SetAcceptance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/SetAcceptance.feature -------------------------------------------------------------------------------- /opencypher-tests/WithAcceptance.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/WithAcceptance.feature -------------------------------------------------------------------------------- /opencypher-tests/get-features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/get-features.sh -------------------------------------------------------------------------------- /opencypher-tests/skipped/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/opencypher-tests/skipped/README.md -------------------------------------------------------------------------------- /queries/Example.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/Example.cypher -------------------------------------------------------------------------------- /queries/adbis-examples/expand-out.cypher: -------------------------------------------------------------------------------- 1 | MATCH (p:Person)-[:LIKES]->(m:Message) 2 | RETURN p.name, m.language 3 | -------------------------------------------------------------------------------- /queries/adbis-examples/get-vertices.cypher: -------------------------------------------------------------------------------- 1 | MATCH (p:Person) 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/adbis-examples/grouping.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/adbis-examples/grouping.cypher -------------------------------------------------------------------------------- /queries/adbis-examples/join.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/adbis-examples/join.cypher -------------------------------------------------------------------------------- /queries/adbis-examples/multihop.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/adbis-examples/multihop.cypher -------------------------------------------------------------------------------- /queries/adbis-examples/selection2.cypher: -------------------------------------------------------------------------------- 1 | MATCH (p:Person) 2 | WHERE p.name = 'Bob' 3 | RETURN p.speaks 4 | -------------------------------------------------------------------------------- /queries/adbis-examples/triangle.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/adbis-examples/triangle.cypher -------------------------------------------------------------------------------- /queries/adbis-examples/unwind.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/adbis-examples/unwind.cypher -------------------------------------------------------------------------------- /queries/fraud-detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/fraud-detection/README.md -------------------------------------------------------------------------------- /queries/fraud-detection/create.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/fraud-detection/create.cypher -------------------------------------------------------------------------------- /queries/jsa/BlockStatement.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/BlockStatement.cypher -------------------------------------------------------------------------------- /queries/jsa/Boolean.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/Boolean.cypher -------------------------------------------------------------------------------- /queries/jsa/CallExpressionParam.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/CallExpressionParam.cypher -------------------------------------------------------------------------------- /queries/jsa/EqualsZero.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/EqualsZero.cypher -------------------------------------------------------------------------------- /queries/jsa/ExceptionThrown.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/ExceptionThrown.cypher -------------------------------------------------------------------------------- /queries/jsa/ExpressionStatement.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/ExpressionStatement.cypher -------------------------------------------------------------------------------- /queries/jsa/FunctionDeclaration.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/FunctionDeclaration.cypher -------------------------------------------------------------------------------- /queries/jsa/IfStatementAlternate.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/IfStatementAlternate.cypher -------------------------------------------------------------------------------- /queries/jsa/Infinity.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/Infinity.cypher -------------------------------------------------------------------------------- /queries/jsa/ListNoItem.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/ListNoItem.cypher -------------------------------------------------------------------------------- /queries/jsa/ListWithItem.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/ListWithItem.cypher -------------------------------------------------------------------------------- /queries/jsa/LiteralX.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/LiteralX.cypher -------------------------------------------------------------------------------- /queries/jsa/LogicalOr.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/LogicalOr.cypher -------------------------------------------------------------------------------- /queries/jsa/Null.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/Null.cypher -------------------------------------------------------------------------------- /queries/jsa/Numeric.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/Numeric.cypher -------------------------------------------------------------------------------- /queries/jsa/QualifierSystem.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/QualifierSystem.cypher -------------------------------------------------------------------------------- /queries/jsa/Read.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/Read.cypher -------------------------------------------------------------------------------- /queries/jsa/RegExp.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/RegExp.cypher -------------------------------------------------------------------------------- /queries/jsa/String.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/String.cypher -------------------------------------------------------------------------------- /queries/jsa/TypeSystem.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/TypeSystem.cypher -------------------------------------------------------------------------------- /queries/jsa/VariableDeclaration.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/VariableDeclaration.cypher -------------------------------------------------------------------------------- /queries/jsa/VariableDeclarator.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/VariableDeclarator.cypher -------------------------------------------------------------------------------- /queries/jsa/VariableReference.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/VariableReference.cypher -------------------------------------------------------------------------------- /queries/jsa/Write.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/Write.cypher -------------------------------------------------------------------------------- /queries/jsa/basicimport.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/basicimport.cypher -------------------------------------------------------------------------------- /queries/jsa/countnodes.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/countnodes.cypher -------------------------------------------------------------------------------- /queries/jsa/deletegraph.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | DETACH DELETE n 3 | -------------------------------------------------------------------------------- /queries/jsa/generatecalls.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/generatecalls.cypher -------------------------------------------------------------------------------- /queries/jsa/getlastcommithash.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/getlastcommithash.cypher -------------------------------------------------------------------------------- /queries/jsa/removecfg.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r:`_next`]->(b) 2 | DELETE r 3 | -------------------------------------------------------------------------------- /queries/jsa/removefile.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/removefile.cypher -------------------------------------------------------------------------------- /queries/jsa/setcommithash.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/setcommithash.cypher -------------------------------------------------------------------------------- /queries/jsa/typing.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/typing.cypher -------------------------------------------------------------------------------- /queries/jsa/unreachableCode.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/unreachableCode.cypher -------------------------------------------------------------------------------- /queries/jsa/unusedfunctions.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/jsa/unusedfunctions.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/README.md -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-01.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-01.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-02.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-03.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-03.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-04.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-04.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-05.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-05.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-06.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-06.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-07.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-07.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-08.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-08.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-09.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-09.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-10.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-10.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-11.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-11.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-12.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-12.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-13.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-13.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-14.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-14.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-15.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-15.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-16.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-16.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-17.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-17.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-18.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-18.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-19.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-19.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-20.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-20.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-21.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-21.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-22.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-22.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-23.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-23.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-24.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-24.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/bi-25.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/bi-25.cypher -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/check-feature.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/check-feature.sh -------------------------------------------------------------------------------- /queries/ldbc-snb-bi/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/ldbc-snb-bi/rename.sh -------------------------------------------------------------------------------- /queries/movie-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/movie-database/README.md -------------------------------------------------------------------------------- /queries/network-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/network-analysis/README.md -------------------------------------------------------------------------------- /queries/railway-verification/sdl-0-example.cypher: -------------------------------------------------------------------------------- 1 | MATCH (tr:Train)-[:ON]->(seg:Segment) 2 | RETURN tr, seg 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH () 2 | RETURN count(*) AS columnName 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_03.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN size(collect(a)) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_05.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:L)-[rel]->(b) 2 | RETURN a, count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_07.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n.x, count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_08.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n.y, count(n.x) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_09.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n.y, sum(n.x) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_10.cypher: -------------------------------------------------------------------------------- 1 | MATCH p=(a:L)-[*]->(b) 2 | RETURN b, avg(length(p)) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_11.cypher: -------------------------------------------------------------------------------- 1 | OPTIONAL MATCH (a) 2 | RETURN count(DISTINCT a) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_12.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN count(DISTINCT a.foo) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_15.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN DISTINCT a.color, count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_16.cypher: -------------------------------------------------------------------------------- 1 | MATCH () 2 | RETURN count(*) * 10 AS c 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_19.cypher: -------------------------------------------------------------------------------- 1 | MATCH () 2 | RETURN count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/AggregationAcceptance_25.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r]-() 2 | RETURN count(r) 3 | -------------------------------------------------------------------------------- /queries/tck/ColumnNameAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN cOuNt( * ) 3 | -------------------------------------------------------------------------------- /queries/tck/ColumnNameAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n)-->(b) 2 | RETURN nOdEs( p ) 3 | -------------------------------------------------------------------------------- /queries/tck/ColumnNameAcceptance_03.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n)-->(b) 2 | RETURN coUnt( dIstInct p ) 3 | -------------------------------------------------------------------------------- /queries/tck/Comparability_01.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/Comparability_01.cypher -------------------------------------------------------------------------------- /queries/tck/Comparability_02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/Comparability_02.cypher -------------------------------------------------------------------------------- /queries/tck/EqualsAcceptance_01.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/EqualsAcceptance_01.cypher -------------------------------------------------------------------------------- /queries/tck/EqualsAcceptance_02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/EqualsAcceptance_02.cypher -------------------------------------------------------------------------------- /queries/tck/EqualsAcceptance_03.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/EqualsAcceptance_03.cypher -------------------------------------------------------------------------------- /queries/tck/EqualsAcceptance_04.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/EqualsAcceptance_04.cypher -------------------------------------------------------------------------------- /queries/tck/EqualsAcceptance_05.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/EqualsAcceptance_05.cypher -------------------------------------------------------------------------------- /queries/tck/ExpressionAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | RETURN 3 IN [[1, 2, 3]][0] AS r 2 | -------------------------------------------------------------------------------- /queries/tck/ExpressionAcceptance_04.cypher: -------------------------------------------------------------------------------- 1 | RETURN 3 IN [1, 2, 3][0..1] AS r 2 | -------------------------------------------------------------------------------- /queries/tck/ExpressionAcceptance_05.cypher: -------------------------------------------------------------------------------- 1 | RETURN [1, 2, 3][0] AS value 2 | -------------------------------------------------------------------------------- /queries/tck/ExpressionAcceptance_06.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n {name: 'Apa'}) 2 | RETURN n['nam' + 'e'] AS value 3 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN coalesce(a.title, a.name) 3 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_04.cypher: -------------------------------------------------------------------------------- 1 | MATCH (p:Person) 2 | RETURN properties(p) AS m 3 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_05.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r:R]->() 2 | RETURN properties(r) AS m 3 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_06.cypher: -------------------------------------------------------------------------------- 1 | RETURN properties({name: 'Popeye', level: 9001}) AS m 2 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_07.cypher: -------------------------------------------------------------------------------- 1 | RETURN properties(null) 2 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_08.cypher: -------------------------------------------------------------------------------- 1 | RETURN reverse('raksO') 2 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_09.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:Person) 2 | WHERE exists(n['prop']) 3 | RETURN n 4 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_11.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r]->() 2 | RETURN type(r) 3 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_15.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r]->() 2 | WITH [r, 1] AS list 3 | RETURN type(list[0]) 4 | -------------------------------------------------------------------------------- /queries/tck/FunctionsAcceptance_18.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:X) 2 | RETURN n, EXIsTS(n.prop) AS b 3 | -------------------------------------------------------------------------------- /queries/tck/JoinAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:A), (b:B) 2 | WHERE a.id = b.id 3 | RETURN a, b 4 | -------------------------------------------------------------------------------- /queries/tck/JoinAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:A), (b:B) 2 | WHERE a.id = b.id 3 | RETURN a, b 4 | -------------------------------------------------------------------------------- /queries/tck/KeysAcceptance_01.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/KeysAcceptance_01.cypher -------------------------------------------------------------------------------- /queries/tck/KeysAcceptance_02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/KeysAcceptance_02.cypher -------------------------------------------------------------------------------- /queries/tck/KeysAcceptance_03.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/KeysAcceptance_03.cypher -------------------------------------------------------------------------------- /queries/tck/KeysAcceptance_04.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/KeysAcceptance_04.cypher -------------------------------------------------------------------------------- /queries/tck/KeysAcceptance_05.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r:KNOWS]-() 2 | UNWIND keys(r) AS x 3 | RETURN DISTINCT x AS theProps 4 | -------------------------------------------------------------------------------- /queries/tck/KeysAcceptance_06.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r:KNOWS]-() 2 | UNWIND keys(r) AS x 3 | RETURN DISTINCT x AS theProps 4 | -------------------------------------------------------------------------------- /queries/tck/KeysAcceptance_08.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/KeysAcceptance_08.cypher -------------------------------------------------------------------------------- /queries/tck/KeysAcceptance_09.cypher: -------------------------------------------------------------------------------- 1 | RETURN keys($param) AS k 2 | -------------------------------------------------------------------------------- /queries/tck/LabelsAcceptance_10.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN labels(n) 3 | -------------------------------------------------------------------------------- /queries/tck/LargeIntegerEquality_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (p:Label) 2 | RETURN p.id 3 | -------------------------------------------------------------------------------- /queries/tck/LargeIntegerEquality_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH (p:Label {id: 4611686018427387905}) 2 | RETURN p.id 3 | -------------------------------------------------------------------------------- /queries/tck/LargeIntegerEquality_04.cypher: -------------------------------------------------------------------------------- 1 | MATCH (p:Label {id : 4611686018427387900}) 2 | RETURN p.id 3 | -------------------------------------------------------------------------------- /queries/tck/ListComprehension_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n)-->() 2 | RETURN [x IN collect(p) | head(nodes(x))] AS p 3 | -------------------------------------------------------------------------------- /queries/tck/ListComprehension_02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/ListComprehension_02.cypher -------------------------------------------------------------------------------- /queries/tck/ListComprehension_03.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/ListComprehension_03.cypher -------------------------------------------------------------------------------- /queries/tck/Literals_01.cypher: -------------------------------------------------------------------------------- 1 | RETURN 1 AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_02.cypher: -------------------------------------------------------------------------------- 1 | RETURN 1.0 AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_03.cypher: -------------------------------------------------------------------------------- 1 | RETURN -1e-9 AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_04.cypher: -------------------------------------------------------------------------------- 1 | RETURN true AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_05.cypher: -------------------------------------------------------------------------------- 1 | RETURN '' AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_06.cypher: -------------------------------------------------------------------------------- 1 | RETURN "" AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_07.cypher: -------------------------------------------------------------------------------- 1 | RETURN null AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_08.cypher: -------------------------------------------------------------------------------- 1 | RETURN [] AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_09.cypher: -------------------------------------------------------------------------------- 1 | RETURN [0, 1, 2] AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_10.cypher: -------------------------------------------------------------------------------- 1 | RETURN {} AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/Literals_11.cypher: -------------------------------------------------------------------------------- 1 | RETURN {k1: 0, k2: 'string'} AS literal 2 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r]->() 2 | RETURN r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_03.cypher: -------------------------------------------------------------------------------- 1 | MATCH (:Root {name: 'x'})-->(i:TextNode) 2 | WHERE i.id > 'te' 3 | RETURN i 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_04.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_04.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_05.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_05.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_06.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_06.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_07.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a {name: 'A'})-[*]->(x) 2 | RETURN x 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_08.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = ({name: 'A'})-[:KNOWS*..2]->() 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_09.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = ({name: 'A'})-[:KNOWS*..]->() 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_10.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_10.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_11.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_11.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_12.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_12.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_13.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_13.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_14.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_14.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_15.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_15.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_16.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_16.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_17.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_17.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_18.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_18.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_19.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_19.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_20.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_20.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_21.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_21.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_22.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[:ADMIN]-(b) 2 | WHERE a:A 3 | RETURN a.id, b.id 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_23.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_24.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a), (b) 2 | WHERE a <> b 3 | RETURN a, b 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_25.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_25.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_26.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_26.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_27.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[:T|:T]->(b) 2 | RETURN b 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_28.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_28.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_29.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | WHERE n.foo = 'bar' 3 | RETURN n 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_30.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (b)<--(a) 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_31.cypher: -------------------------------------------------------------------------------- 1 | OPTIONAL MATCH (n) 2 | RETURN n 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_32.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_32.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_33.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_33.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_34.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_34.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_35.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-->(b:Foo) 2 | RETURN b 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_36.cypher: -------------------------------------------------------------------------------- 1 | MATCH (:A)-[r]->(:B) 2 | RETURN r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_37.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:A:B:C) 2 | RETURN a 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_38.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN (n:Foo) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_39.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_39.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_40.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:Person)-->() 2 | WHERE n.name = 'Bob' 3 | RETURN n 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_41.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_41.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_42.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_42.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_43.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_43.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_44.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_44.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_45.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r*1..1]->(b) 2 | RETURN r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_46.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_46.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_47.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_47.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_48.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_48.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_49.cypher: -------------------------------------------------------------------------------- 1 | OPTIONAL MATCH (a) 2 | RETURN a 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_50.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (a) 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_51.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = ()-[*0..]->() 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_52.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_52.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_53.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_53.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_54.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_54.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_55.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_55.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_56.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance2_56.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_68.cypher: -------------------------------------------------------------------------------- 1 | MATCH (foo) 2 | RETURN foo.bar AS x 3 | ORDER BY x DESC 4 | LIMIT 4 5 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_69.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN count(a) > 0 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_72.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:Blue)-[r*]->(b:Green) 2 | RETURN count(r) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_73.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n:Movie)--(m) 2 | RETURN p 3 | LIMIT 1 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_75.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n)-->(m)--(o) 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_78.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN a.prop 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_79.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r]->() 2 | RETURN r.prop 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_81.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN a.bar 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_82.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r]->() 2 | RETURN r.bar 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_84.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN a.prop + 1 AS foo 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_86.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r*0..1]-() 2 | RETURN last(r) AS l 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_88.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)-[r]->(m) 2 | RETURN [n, r, m] AS r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_89.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)-[r]->(m) 2 | RETURN {node1: n, rel: r, node2: m} AS m 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_92.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n)-->(k)<--(n) 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_95.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:A:B:C:D:E:F:G:H:I:J:K:L:M)-[:T]->(m:Z:Y:X:W:V:U) 2 | RETURN n, m 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance2_98.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[r]-() 2 | RETURN type(r) AS r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_01.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_01.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_02.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_03.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_03.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_04.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r]->(b) 2 | WHERE r.foo = $param 3 | RETURN b 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_05.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[rel:X]-(a) 2 | WHERE a.name = 'Andres' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_06.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WITH a.name AS a 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_07.cypher: -------------------------------------------------------------------------------- 1 | MATCH (node)-[r:KNOWS]->(a) 2 | WHERE r.name = 'monkey' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_08.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | WITH n.name AS n 3 | RETURN n 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_09.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n1)-[rel:KNOWS]->(n2) 2 | RETURN n1, n2 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_10.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-[rel:KNOWS]->(x) 2 | RETURN x 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_11.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_11.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_12.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_12.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_13.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r {name: 'r'}]-(b) 2 | RETURN a, b 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_14.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_14.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_15.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n {name: 'A'})-[r]->(x) 2 | WHERE type(r) = 'KNOWS' 3 | RETURN x 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_16.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_16.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_17.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_17.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_18.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (a {name: 'A'})-->(b) 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_19.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_19.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_20.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n)-->(x) 2 | WHERE length(p) = 10 3 | RETURN x 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_21.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n)-->(x) 2 | WHERE length(p) = 1 3 | RETURN x 4 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_22.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (a)-[:REL*2..2]->(b:End) 2 | RETURN relationships(p) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_23.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (a:Start)-[:REL*2..2]->(b) 2 | RETURN relationships(p) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_24.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r:REL*2..2]->(b:End) 2 | RETURN r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_25.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r:REL*2..2]-(b:End) 2 | RETURN r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_26.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:Start)-[r:REL*2..2]-(b) 2 | RETURN r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_27.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (n {name: 'A'})-[:KNOWS*1..2]->(x) 2 | RETURN p 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_28.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (a)-[*0..1]->(b) 2 | RETURN a, b, length(p) AS l 3 | -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_29.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/MatchAcceptance_29.cypher -------------------------------------------------------------------------------- /queries/tck/MatchAcceptance_30.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | WHERE 1 = 0 3 | RETURN n SKIP 0 4 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r]-(b) 2 | RETURN a, r, b 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()--() 2 | RETURN count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_03.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)-[r]-(n) 2 | RETURN n, r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_04.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)--(n) 2 | RETURN count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_05.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r]-(b) 2 | RETURN a, r, b 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_06.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()--() 2 | RETURN count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_07.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r]->(b) 2 | RETURN a, r, b 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_08.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-->() 2 | RETURN count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_09.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)-[r]->(n) 2 | RETURN n, r 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_10.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)-->(n) 2 | RETURN count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_11.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)-[r]-(n) 2 | RETURN count(r) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_12.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)-[r]-(n) 2 | RETURN count(DISTINCT r) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_13.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-[r]->(b) 2 | RETURN a, r, b 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_14.cypher: -------------------------------------------------------------------------------- 1 | MATCH ()-->() 2 | RETURN count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_15.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n)-[r]->(n) 2 | RETURN count(r) 3 | -------------------------------------------------------------------------------- /queries/tck/MatchingSelfRelationships_17.cypher: -------------------------------------------------------------------------------- 1 | MATCH (:A)-->()--() 2 | RETURN count(*) 3 | -------------------------------------------------------------------------------- /queries/tck/OptionalMatch_01.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/OptionalMatch_01.cypher -------------------------------------------------------------------------------- /queries/tck/OptionalMatch_02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/OptionalMatch_02.cypher -------------------------------------------------------------------------------- /queries/tck/OptionalMatch_03.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/OptionalMatch_03.cypher -------------------------------------------------------------------------------- /queries/tck/OrderByAcceptance_04.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n.prop AS n 3 | ORDER BY n + 2 4 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_03.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:A) 2 | RETURN [p = (n)-->(:B) | p] 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_04.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:A), (b:B) 2 | RETURN [p = (a)-[*]->(b) | p] AS paths 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_07.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:A) 2 | RETURN [p = (n)-[:HAS]->() | p] AS ps 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_08.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:A) 2 | RETURN count([p = (n)-[:HAS]->() | p]) AS c 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_09.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:X) 2 | RETURN n, size([(n)--() | 1]) > 0 AS b 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_11.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:X) 2 | RETURN size([(a)-->() | 1]) AS length 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_12.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:X) 2 | RETURN size([(a)-[:T]->() | 1]) AS length 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_13.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:X) 2 | RETURN size([(a)-[:T|OTHER]->() | 1]) AS length 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_14.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN [(n)-[:T]->(b) | b.prop] AS list 3 | -------------------------------------------------------------------------------- /queries/tck/PatternComprehension_15.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN [(n)-[r:T]->() | r.prop] AS list 3 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_05.cypher: -------------------------------------------------------------------------------- 1 | RETURN '\u01FF' AS a 2 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_06.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | LIMIT 0 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_08.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN DISTINCT n.name 3 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_09.cypher: -------------------------------------------------------------------------------- 1 | MATCH p = (a:Start)-->(b) 2 | RETURN * 3 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_11.cypher: -------------------------------------------------------------------------------- 1 | RETURN sqrt(12.96) 2 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_14.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_15.cypher: -------------------------------------------------------------------------------- 1 | RETURN {a: 1, b: 'foo'} 2 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_16.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN exists(a.id), a IS NOT NULL 3 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_17.cypher: -------------------------------------------------------------------------------- 1 | RETURN size([[], []] + [[]]) AS l 2 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_20.cypher: -------------------------------------------------------------------------------- 1 | RETURN substring('0123456789', 1) AS s 2 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_21.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN * 3 | ORDER BY n.id 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_22.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN DISTINCT n.id AS id 3 | ORDER BY id DESC 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_23.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN DISTINCT n 3 | ORDER BY n.id 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_27.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN a, count(a) + 3 3 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance2_34.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | WITH DISTINCT {foo: n.list} AS map 3 | RETURN count(*) 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.id = 1337 3 | RETURN a.version + 5 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | LIMIT 2 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_03.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | ORDER BY n.name ASC 4 | SKIP 2 5 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_04.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | ORDER BY n.name ASC 4 | SKIP $skipAmount 5 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_05.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | ORDER BY n.name ASC 4 | SKIP 2 5 | LIMIT 2 6 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_06.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | ORDER BY n.name ASC 4 | SKIP $s 5 | LIMIT $l 6 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_08.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN DISTINCT a 3 | ORDER BY a.name 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_09.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | RETURN a AS ColumnName 3 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_10.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a)-->(b) 2 | RETURN DISTINCT b 3 | ORDER BY b.name 4 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_11.cypher: -------------------------------------------------------------------------------- 1 | RETURN 12 / 4 * 3 - 2 * 4 2 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_12.cypher: -------------------------------------------------------------------------------- 1 | RETURN 12 / 4 * (3 - 2 * 4) 2 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_14.cypher: -------------------------------------------------------------------------------- 1 | RETURN abs(-1) 2 | -------------------------------------------------------------------------------- /queries/tck/ReturnAcceptance_15.cypher: -------------------------------------------------------------------------------- 1 | RETURN size([1, 2, 3]) AS n 2 | -------------------------------------------------------------------------------- /queries/tck/SemanticErrorAcceptance_04.cypher: -------------------------------------------------------------------------------- 1 | RETURN range(2, 8, 0) 2 | -------------------------------------------------------------------------------- /queries/tck/StartingPointAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | RETURN n 3 | -------------------------------------------------------------------------------- /queries/tck/StartingPointAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:Animal) 2 | RETURN n 3 | -------------------------------------------------------------------------------- /queries/tck/StartingPointAcceptance_03.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | WHERE n.prop = 2 3 | RETURN n 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name STARTS WITH 'ABCDEF' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name STARTS WITH 'ABC' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_03.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name ENDS WITH 'DEF' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_04.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name ENDS WITH 'AB' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_06.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name STARTS WITH '' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_07.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name CONTAINS 'CD' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_14.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name STARTS WITH null 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_15.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE NOT a.name STARTS WITH null 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_16.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name ENDS WITH null 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_17.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE NOT a.name ENDS WITH null 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_18.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE a.name CONTAINS null 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_19.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE NOT a.name CONTAINS null 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/StartsWithAcceptance_21.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WHERE NOT a.name CONTAINS 'b' 3 | RETURN a 4 | -------------------------------------------------------------------------------- /queries/tck/TernaryLogicAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | RETURN NOT null AS value 2 | -------------------------------------------------------------------------------- /queries/tck/TernaryLogicAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | RETURN null IS NULL AS value 2 | -------------------------------------------------------------------------------- /queries/tck/TernaryLogicAcceptance_03.cypher: -------------------------------------------------------------------------------- 1 | RETURN null IS NOT NULL AS value 2 | -------------------------------------------------------------------------------- /queries/tck/TriadicSelection_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a:A)-[:KNOWS]->(b)-->(c) 2 | RETURN c.name 3 | -------------------------------------------------------------------------------- /queries/tck/TypeConversionFunctions_01.cypher: -------------------------------------------------------------------------------- 1 | RETURN toBoolean('true') AS b 2 | -------------------------------------------------------------------------------- /queries/tck/TypeConversionFunctions_03.cypher: -------------------------------------------------------------------------------- 1 | UNWIND ['true', 'false'] AS s 2 | RETURN toBoolean(s) AS b 3 | -------------------------------------------------------------------------------- /queries/tck/TypeConversionFunctions_11.cypher: -------------------------------------------------------------------------------- 1 | RETURN toInteger(1 - {param}) AS result 2 | -------------------------------------------------------------------------------- /queries/tck/TypeConversionFunctions_18.cypher: -------------------------------------------------------------------------------- 1 | MATCH (m:Movie) 2 | RETURN toString(m.watched) 3 | -------------------------------------------------------------------------------- /queries/tck/TypeConversionFunctions_19.cypher: -------------------------------------------------------------------------------- 1 | RETURN toString(1 < 0) AS bool 2 | -------------------------------------------------------------------------------- /queries/tck/TypeConversionFunctions_20.cypher: -------------------------------------------------------------------------------- 1 | RETURN toString(true) AS bool 2 | -------------------------------------------------------------------------------- /queries/tck/TypeConversionFunctions_21.cypher: -------------------------------------------------------------------------------- 1 | RETURN [x IN [1, 2.3, true, 'apa'] | toString(x) ] AS list 2 | -------------------------------------------------------------------------------- /queries/tck/UnionAcceptance_01.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/UnionAcceptance_01.cypher -------------------------------------------------------------------------------- /queries/tck/UnionAcceptance_02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/UnionAcceptance_02.cypher -------------------------------------------------------------------------------- /queries/tck/UnionAcceptance_03.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/UnionAcceptance_03.cypher -------------------------------------------------------------------------------- /queries/tck/UnionAcceptance_04.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/UnionAcceptance_04.cypher -------------------------------------------------------------------------------- /queries/tck/UnionAcceptance_05.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/UnionAcceptance_05.cypher -------------------------------------------------------------------------------- /queries/tck/UnwindAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | UNWIND [1, 2, 3] AS x 2 | RETURN x 3 | -------------------------------------------------------------------------------- /queries/tck/UnwindAcceptance_02.cypher: -------------------------------------------------------------------------------- 1 | UNWIND range(1, 3) AS x 2 | RETURN x 3 | -------------------------------------------------------------------------------- /queries/tck/WhereAcceptance_01.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | WHERE NOT(n.name = 'apa' AND false) 3 | RETURN n 4 | -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_01.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_01.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_02.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_02.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_03.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_03.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_04.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_04.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_05.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_05.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_06.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_06.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_07.cypher: -------------------------------------------------------------------------------- 1 | MATCH (a) 2 | WITH a 3 | WHERE a.name = 'B' 4 | RETURN a 5 | -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_08.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_08.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_09.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_09.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_10.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_10.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_11.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_11.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_12.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_12.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_13.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_13.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_14.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_14.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_15.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_15.cypher -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_16.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n) 2 | WITH n 3 | WHERE n.prop = 42 4 | RETURN count(*) 5 | -------------------------------------------------------------------------------- /queries/tck/WithAcceptance_17.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/queries/tck/WithAcceptance_17.cypher -------------------------------------------------------------------------------- /results/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /scripts/copy-opencypher-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/scripts/copy-opencypher-tests.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/generate-and-deploy-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/scripts/generate-and-deploy-report.sh -------------------------------------------------------------------------------- /scripts/get-slizaa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/scripts/get-slizaa.sh -------------------------------------------------------------------------------- /scripts/quick-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/scripts/quick-test.sh -------------------------------------------------------------------------------- /scripts/smoke-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/scripts/smoke-test.sh -------------------------------------------------------------------------------- /scripts/travis-tex-run-required.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/scripts/travis-tex-run-required.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/settings.gradle -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | 5 | -------------------------------------------------------------------------------- /site/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_config.yml -------------------------------------------------------------------------------- /site/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_includes/footer.html -------------------------------------------------------------------------------- /site/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_includes/head.html -------------------------------------------------------------------------------- /site/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_includes/header.html -------------------------------------------------------------------------------- /site/_includes/icon-github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_includes/icon-github.html -------------------------------------------------------------------------------- /site/_includes/icon-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_includes/icon-github.svg -------------------------------------------------------------------------------- /site/_includes/icon-twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_includes/icon-twitter.html -------------------------------------------------------------------------------- /site/_includes/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_includes/icon-twitter.svg -------------------------------------------------------------------------------- /site/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_layouts/default.html -------------------------------------------------------------------------------- /site/_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_sass/_base.scss -------------------------------------------------------------------------------- /site/_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_sass/_layout.scss -------------------------------------------------------------------------------- /site/_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /site/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/css/main.scss -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/index.md -------------------------------------------------------------------------------- /site/pub/lucz-soma-bsc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/pub/lucz-soma-bsc.pdf -------------------------------------------------------------------------------- /site/pub/models2014-incqueryd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/pub/models2014-incqueryd.pdf -------------------------------------------------------------------------------- /site/pub/opencypher-report.pdf.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_to: 3 | - http://hdl.handle.net/10890/5395 4 | --- 5 | -------------------------------------------------------------------------------- /site/pub/sdl2017-opencypher-mde.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/pub/sdl2017-opencypher-mde.pdf -------------------------------------------------------------------------------- /site/pub/stein-daniel-msc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/site/pub/stein-daniel-msc.pdf -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/tests/benchmark.sh -------------------------------------------------------------------------------- /tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/tests/build.gradle -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/tests/run.sh -------------------------------------------------------------------------------- /visualization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/visualization/.gitignore -------------------------------------------------------------------------------- /visualization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/visualization/README.md -------------------------------------------------------------------------------- /visualization/ldbc-snb-bi/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | -------------------------------------------------------------------------------- /visualization/queries/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | -------------------------------------------------------------------------------- /visualization/query-plans/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | -------------------------------------------------------------------------------- /visualization/query-plans/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/visualization/query-plans/convert.sh -------------------------------------------------------------------------------- /visualization/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | *.sty 3 | 4 | -------------------------------------------------------------------------------- /visualization/sandbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftsrg/ingraph/HEAD/visualization/sandbox/Makefile -------------------------------------------------------------------------------- /visualization/tck/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | -------------------------------------------------------------------------------- /visualization/trainbenchmark/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | --------------------------------------------------------------------------------