├── .coveragerc ├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug_report.md ├── pull_request_template.md └── workflows │ ├── build-and-test.yml │ ├── build-docs.yml │ ├── build-packages.yml │ ├── create-github-release.yml │ ├── publish-docs.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── assets │ ├── images │ │ └── favicon.png │ └── memgraph-logo.svg ├── changelog.md ├── how-to-guides │ ├── data │ │ ├── dgl-example.png │ │ ├── networkx-example-2.png │ │ └── pyg-example.png │ ├── instance-runner │ │ ├── memgraph-binary-instance.md │ │ └── memgraph-docker-instance.md │ ├── loaders │ │ ├── import-table-data-to-graph-database.md │ │ └── make-a-custom-file-system-importer.md │ ├── ogm.md │ ├── on-disk-storage │ │ └── on-disk-storage.md │ ├── overview.md │ ├── query-builder.md │ ├── query-builder │ │ └── graph-projection.md │ ├── streams │ │ ├── kafka-streams.md │ │ └── pulsar-streams.md │ ├── translators │ │ ├── export-python-graphs.md │ │ └── import-python-graphs.md │ └── triggers │ │ └── triggers.md ├── import-data.md ├── index.md ├── installation.md ├── reference │ ├── gqlalchemy │ │ ├── connection.md │ │ ├── disk_storage.md │ │ ├── exceptions.md │ │ ├── graph_algorithms │ │ │ ├── integrated_algorithms.md │ │ │ ├── query_builder.md │ │ │ └── query_modules.md │ │ ├── instance_runner.md │ │ ├── models.md │ │ ├── overview.md │ │ ├── query_builders │ │ │ ├── declarative_base.md │ │ │ └── memgraph_query_builder.md │ │ ├── transformations │ │ │ ├── export │ │ │ │ ├── graph_transporter.md │ │ │ │ └── transporter.md │ │ │ ├── importing │ │ │ │ ├── graph_importer.md │ │ │ │ └── loaders.md │ │ │ └── translators │ │ │ │ ├── dgl_translator.md │ │ │ │ ├── nx_translator.md │ │ │ │ ├── pyg_translator.md │ │ │ │ └── translator.md │ │ ├── utilities.md │ │ └── vendors │ │ │ ├── database_client.md │ │ │ ├── memgraph.md │ │ │ └── neo4j.md │ └── sidebar.json ├── stylesheets │ └── extra.css └── under-the-hood │ ├── data │ └── networkx-example-1.png │ ├── overview.md │ └── python-graph-translators.md ├── gqlalchemy ├── __init__.py ├── connection.py ├── disk_storage.py ├── exceptions.py ├── graph_algorithms │ ├── __init__.py │ ├── integrated_algorithms.py │ ├── query_builder.py │ └── query_modules.py ├── instance_runner.py ├── memgraph_constants.py ├── models.py ├── query_builders │ ├── __init__.py │ ├── declarative_base.py │ ├── memgraph_query_builder.py │ └── neo4j_query_builder.py ├── query_modules │ ├── __init__.py │ └── push_streams │ │ ├── kafka.py │ │ └── power_bi.py ├── transformations │ ├── __init__.py │ ├── constants.py │ ├── export │ │ ├── __init__.py │ │ ├── graph_transporter.py │ │ └── transporter.py │ ├── graph_type.py │ ├── importing │ │ ├── __init__.py │ │ ├── graph_importer.py │ │ ├── importer.py │ │ └── loaders.py │ └── translators │ │ ├── __init__.py │ │ ├── dgl_translator.py │ │ ├── nx_translator.py │ │ ├── pyg_translator.py │ │ └── translator.py ├── utilities.py └── vendors │ ├── __init__.py │ ├── database_client.py │ ├── memgraph.py │ └── neo4j.py ├── mkdocs.yml ├── poetry.lock ├── pydoc-markdown.yml ├── pyproject.toml ├── pytest.ini ├── scripts ├── get_changelog.sh ├── query_module_signature_generator.py └── update_changelog.sh └── tests ├── __init__.py ├── conftest.py ├── data ├── nodes_and_edges.cyp └── path.cyp ├── docs ├── __init__.py ├── test_ogm.py └── test_query_builder.py ├── graph_algorithms ├── __init__.py ├── test_query_builder.py └── test_query_modules.py ├── integration ├── __init__.py ├── test_constraints.py ├── test_graph_algorithms.py ├── test_index.py ├── test_memgraph.py ├── test_networkx.py ├── test_storage_modes.py ├── test_stream.py ├── test_trigger.py └── test_type_transport.py ├── memgraph ├── __init__.py ├── test_add_query_modules.py └── test_memgraph.py ├── ogm ├── __init__.py ├── test_automatic_deserialisation.py ├── test_class_definition.py ├── test_custom_fields.py ├── test_get_or_create.py ├── test_load_node.py ├── test_loading.py ├── test_multiple_inheritance.py ├── test_properties.py ├── test_serialisation.py ├── test_storage_modes.py ├── test_transactions.py └── test_validators.py ├── on_disk_property_storage ├── test_multiprocess.py └── test_query.py ├── query_builders ├── __init__.py ├── test_memgraph_query_builder.py ├── test_neo4j_query_builder.py └── test_query_builders.py ├── test_instance_runner.py ├── test_query.py ├── test_utilities.py └── transformations ├── common.py ├── export └── test_export.py ├── importing ├── __init__.py └── test_import.py ├── loaders ├── __init__.py ├── data │ ├── address.csv │ ├── example.csv │ ├── example.feather │ ├── example.orc │ ├── example.parquet │ ├── i2a.csv │ └── individual.csv └── test_loaders.py └── translators ├── __init__.py ├── test_dgl_transformations.py ├── test_nx_transformations.py └── test_pyg_transformations.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Josipmrden @katarinasupe @as51340 @antejavor 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/build-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.github/workflows/build-packages.yml -------------------------------------------------------------------------------- /.github/workflows/create-github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.github/workflows/create-github-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/assets/images/favicon.png -------------------------------------------------------------------------------- /docs/assets/memgraph-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/assets/memgraph-logo.svg -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/how-to-guides/data/dgl-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/data/dgl-example.png -------------------------------------------------------------------------------- /docs/how-to-guides/data/networkx-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/data/networkx-example-2.png -------------------------------------------------------------------------------- /docs/how-to-guides/data/pyg-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/data/pyg-example.png -------------------------------------------------------------------------------- /docs/how-to-guides/instance-runner/memgraph-binary-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/instance-runner/memgraph-binary-instance.md -------------------------------------------------------------------------------- /docs/how-to-guides/instance-runner/memgraph-docker-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/instance-runner/memgraph-docker-instance.md -------------------------------------------------------------------------------- /docs/how-to-guides/loaders/import-table-data-to-graph-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/loaders/import-table-data-to-graph-database.md -------------------------------------------------------------------------------- /docs/how-to-guides/loaders/make-a-custom-file-system-importer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/loaders/make-a-custom-file-system-importer.md -------------------------------------------------------------------------------- /docs/how-to-guides/ogm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/ogm.md -------------------------------------------------------------------------------- /docs/how-to-guides/on-disk-storage/on-disk-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/on-disk-storage/on-disk-storage.md -------------------------------------------------------------------------------- /docs/how-to-guides/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/overview.md -------------------------------------------------------------------------------- /docs/how-to-guides/query-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/query-builder.md -------------------------------------------------------------------------------- /docs/how-to-guides/query-builder/graph-projection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/query-builder/graph-projection.md -------------------------------------------------------------------------------- /docs/how-to-guides/streams/kafka-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/streams/kafka-streams.md -------------------------------------------------------------------------------- /docs/how-to-guides/streams/pulsar-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/streams/pulsar-streams.md -------------------------------------------------------------------------------- /docs/how-to-guides/translators/export-python-graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/translators/export-python-graphs.md -------------------------------------------------------------------------------- /docs/how-to-guides/translators/import-python-graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/translators/import-python-graphs.md -------------------------------------------------------------------------------- /docs/how-to-guides/triggers/triggers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/how-to-guides/triggers/triggers.md -------------------------------------------------------------------------------- /docs/import-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/import-data.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/connection.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/disk_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/disk_storage.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/exceptions.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/graph_algorithms/integrated_algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/graph_algorithms/integrated_algorithms.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/graph_algorithms/query_builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/graph_algorithms/query_builder.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/graph_algorithms/query_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/graph_algorithms/query_modules.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/instance_runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/instance_runner.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/models.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/overview.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/query_builders/declarative_base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/query_builders/declarative_base.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/query_builders/memgraph_query_builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/query_builders/memgraph_query_builder.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/transformations/export/graph_transporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/transformations/export/graph_transporter.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/transformations/export/transporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/transformations/export/transporter.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/transformations/importing/graph_importer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/transformations/importing/graph_importer.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/transformations/importing/loaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/transformations/importing/loaders.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/transformations/translators/dgl_translator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/transformations/translators/dgl_translator.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/transformations/translators/nx_translator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/transformations/translators/nx_translator.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/transformations/translators/pyg_translator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/transformations/translators/pyg_translator.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/transformations/translators/translator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/transformations/translators/translator.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/utilities.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/vendors/database_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/vendors/database_client.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/vendors/memgraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/vendors/memgraph.md -------------------------------------------------------------------------------- /docs/reference/gqlalchemy/vendors/neo4j.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/gqlalchemy/vendors/neo4j.md -------------------------------------------------------------------------------- /docs/reference/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/reference/sidebar.json -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/under-the-hood/data/networkx-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/under-the-hood/data/networkx-example-1.png -------------------------------------------------------------------------------- /docs/under-the-hood/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/under-the-hood/overview.md -------------------------------------------------------------------------------- /docs/under-the-hood/python-graph-translators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/docs/under-the-hood/python-graph-translators.md -------------------------------------------------------------------------------- /gqlalchemy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/__init__.py -------------------------------------------------------------------------------- /gqlalchemy/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/connection.py -------------------------------------------------------------------------------- /gqlalchemy/disk_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/disk_storage.py -------------------------------------------------------------------------------- /gqlalchemy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/exceptions.py -------------------------------------------------------------------------------- /gqlalchemy/graph_algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/graph_algorithms/__init__.py -------------------------------------------------------------------------------- /gqlalchemy/graph_algorithms/integrated_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/graph_algorithms/integrated_algorithms.py -------------------------------------------------------------------------------- /gqlalchemy/graph_algorithms/query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/graph_algorithms/query_builder.py -------------------------------------------------------------------------------- /gqlalchemy/graph_algorithms/query_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/graph_algorithms/query_modules.py -------------------------------------------------------------------------------- /gqlalchemy/instance_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/instance_runner.py -------------------------------------------------------------------------------- /gqlalchemy/memgraph_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/memgraph_constants.py -------------------------------------------------------------------------------- /gqlalchemy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/models.py -------------------------------------------------------------------------------- /gqlalchemy/query_builders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/query_builders/__init__.py -------------------------------------------------------------------------------- /gqlalchemy/query_builders/declarative_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/query_builders/declarative_base.py -------------------------------------------------------------------------------- /gqlalchemy/query_builders/memgraph_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/query_builders/memgraph_query_builder.py -------------------------------------------------------------------------------- /gqlalchemy/query_builders/neo4j_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/query_builders/neo4j_query_builder.py -------------------------------------------------------------------------------- /gqlalchemy/query_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/query_modules/__init__.py -------------------------------------------------------------------------------- /gqlalchemy/query_modules/push_streams/kafka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/query_modules/push_streams/kafka.py -------------------------------------------------------------------------------- /gqlalchemy/query_modules/push_streams/power_bi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/query_modules/push_streams/power_bi.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gqlalchemy/transformations/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/constants.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/export/__init__.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/export/graph_transporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/export/graph_transporter.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/export/transporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/export/transporter.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/graph_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/graph_type.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/importing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/importing/__init__.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/importing/graph_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/importing/graph_importer.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/importing/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/importing/importer.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/importing/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/importing/loaders.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/translators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/translators/__init__.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/translators/dgl_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/translators/dgl_translator.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/translators/nx_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/translators/nx_translator.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/translators/pyg_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/translators/pyg_translator.py -------------------------------------------------------------------------------- /gqlalchemy/transformations/translators/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/transformations/translators/translator.py -------------------------------------------------------------------------------- /gqlalchemy/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/utilities.py -------------------------------------------------------------------------------- /gqlalchemy/vendors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/vendors/__init__.py -------------------------------------------------------------------------------- /gqlalchemy/vendors/database_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/vendors/database_client.py -------------------------------------------------------------------------------- /gqlalchemy/vendors/memgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/vendors/memgraph.py -------------------------------------------------------------------------------- /gqlalchemy/vendors/neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/gqlalchemy/vendors/neo4j.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pydoc-markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/pydoc-markdown.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/get_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/scripts/get_changelog.sh -------------------------------------------------------------------------------- /scripts/query_module_signature_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/scripts/query_module_signature_generator.py -------------------------------------------------------------------------------- /scripts/update_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/scripts/update_changelog.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/nodes_and_edges.cyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/data/nodes_and_edges.cyp -------------------------------------------------------------------------------- /tests/data/path.cyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/data/path.cyp -------------------------------------------------------------------------------- /tests/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/docs/__init__.py -------------------------------------------------------------------------------- /tests/docs/test_ogm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/docs/test_ogm.py -------------------------------------------------------------------------------- /tests/docs/test_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/docs/test_query_builder.py -------------------------------------------------------------------------------- /tests/graph_algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/graph_algorithms/__init__.py -------------------------------------------------------------------------------- /tests/graph_algorithms/test_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/graph_algorithms/test_query_builder.py -------------------------------------------------------------------------------- /tests/graph_algorithms/test_query_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/graph_algorithms/test_query_modules.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/__init__.py -------------------------------------------------------------------------------- /tests/integration/test_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_constraints.py -------------------------------------------------------------------------------- /tests/integration/test_graph_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_graph_algorithms.py -------------------------------------------------------------------------------- /tests/integration/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_index.py -------------------------------------------------------------------------------- /tests/integration/test_memgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_memgraph.py -------------------------------------------------------------------------------- /tests/integration/test_networkx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_networkx.py -------------------------------------------------------------------------------- /tests/integration/test_storage_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_storage_modes.py -------------------------------------------------------------------------------- /tests/integration/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_stream.py -------------------------------------------------------------------------------- /tests/integration/test_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_trigger.py -------------------------------------------------------------------------------- /tests/integration/test_type_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/integration/test_type_transport.py -------------------------------------------------------------------------------- /tests/memgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/memgraph/__init__.py -------------------------------------------------------------------------------- /tests/memgraph/test_add_query_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/memgraph/test_add_query_modules.py -------------------------------------------------------------------------------- /tests/memgraph/test_memgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/memgraph/test_memgraph.py -------------------------------------------------------------------------------- /tests/ogm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/__init__.py -------------------------------------------------------------------------------- /tests/ogm/test_automatic_deserialisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_automatic_deserialisation.py -------------------------------------------------------------------------------- /tests/ogm/test_class_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_class_definition.py -------------------------------------------------------------------------------- /tests/ogm/test_custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_custom_fields.py -------------------------------------------------------------------------------- /tests/ogm/test_get_or_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_get_or_create.py -------------------------------------------------------------------------------- /tests/ogm/test_load_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_load_node.py -------------------------------------------------------------------------------- /tests/ogm/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_loading.py -------------------------------------------------------------------------------- /tests/ogm/test_multiple_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_multiple_inheritance.py -------------------------------------------------------------------------------- /tests/ogm/test_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_properties.py -------------------------------------------------------------------------------- /tests/ogm/test_serialisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_serialisation.py -------------------------------------------------------------------------------- /tests/ogm/test_storage_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_storage_modes.py -------------------------------------------------------------------------------- /tests/ogm/test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_transactions.py -------------------------------------------------------------------------------- /tests/ogm/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/ogm/test_validators.py -------------------------------------------------------------------------------- /tests/on_disk_property_storage/test_multiprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/on_disk_property_storage/test_multiprocess.py -------------------------------------------------------------------------------- /tests/on_disk_property_storage/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/on_disk_property_storage/test_query.py -------------------------------------------------------------------------------- /tests/query_builders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/query_builders/__init__.py -------------------------------------------------------------------------------- /tests/query_builders/test_memgraph_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/query_builders/test_memgraph_query_builder.py -------------------------------------------------------------------------------- /tests/query_builders/test_neo4j_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/query_builders/test_neo4j_query_builder.py -------------------------------------------------------------------------------- /tests/query_builders/test_query_builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/query_builders/test_query_builders.py -------------------------------------------------------------------------------- /tests/test_instance_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/test_instance_runner.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/test_utilities.py -------------------------------------------------------------------------------- /tests/transformations/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/common.py -------------------------------------------------------------------------------- /tests/transformations/export/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/export/test_export.py -------------------------------------------------------------------------------- /tests/transformations/importing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/importing/__init__.py -------------------------------------------------------------------------------- /tests/transformations/importing/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/importing/test_import.py -------------------------------------------------------------------------------- /tests/transformations/loaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/__init__.py -------------------------------------------------------------------------------- /tests/transformations/loaders/data/address.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/data/address.csv -------------------------------------------------------------------------------- /tests/transformations/loaders/data/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/data/example.csv -------------------------------------------------------------------------------- /tests/transformations/loaders/data/example.feather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/data/example.feather -------------------------------------------------------------------------------- /tests/transformations/loaders/data/example.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/data/example.orc -------------------------------------------------------------------------------- /tests/transformations/loaders/data/example.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/data/example.parquet -------------------------------------------------------------------------------- /tests/transformations/loaders/data/i2a.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/data/i2a.csv -------------------------------------------------------------------------------- /tests/transformations/loaders/data/individual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/data/individual.csv -------------------------------------------------------------------------------- /tests/transformations/loaders/test_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/loaders/test_loaders.py -------------------------------------------------------------------------------- /tests/transformations/translators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/translators/__init__.py -------------------------------------------------------------------------------- /tests/transformations/translators/test_dgl_transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/translators/test_dgl_transformations.py -------------------------------------------------------------------------------- /tests/transformations/translators/test_nx_transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/translators/test_nx_transformations.py -------------------------------------------------------------------------------- /tests/transformations/translators/test_pyg_transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memgraph/gqlalchemy/HEAD/tests/transformations/translators/test_pyg_transformations.py --------------------------------------------------------------------------------