├── .env ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── integration-tests.yml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .sonarcloud.properties ├── AUTHORS.txt ├── CODE_OF_CONDUCT.md ├── Changelog ├── LICENSE ├── README.md ├── bin └── make-unasync ├── dev ├── doc ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ ├── neomodel-148.png │ └── neomodel-300.png │ ├── _themes │ └── alabaster │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── about.html │ │ ├── layout.html │ │ ├── navigation.html │ │ ├── static │ │ └── alabaster.css_t │ │ ├── support.py │ │ └── theme.conf │ ├── advanced_query_operations.rst │ ├── batch.rst │ ├── conf.py │ ├── configuration.rst │ ├── cypher.rst │ ├── extending.rst │ ├── filtering_ordering.rst │ ├── getting_started.rst │ ├── hooks.rst │ ├── index.rst │ ├── module_documentation.rst │ ├── module_documentation_async.rst │ ├── module_documentation_sync.rst │ ├── properties.rst │ ├── relationships.rst │ ├── schema_management.rst │ ├── semantic_indexes.rst │ ├── spatial_properties.rst │ ├── transactions.rst │ └── traversal.rst ├── docker-compose.yml ├── docker-scripts ├── docker-neo4j.sh ├── readme.md └── tests-with-docker-compose.sh ├── model_diagram.json ├── model_diagram.puml ├── neomodel ├── __init__.py ├── _async_compat │ └── util.py ├── _version.py ├── async_ │ ├── __init__.py │ ├── cardinality.py │ ├── database.py │ ├── match.py │ ├── node.py │ ├── path.py │ ├── property_manager.py │ ├── relationship.py │ ├── relationship_manager.py │ └── transaction.py ├── config.py ├── constants.py ├── contrib │ ├── __init__.py │ ├── async_ │ │ └── semi_structured.py │ ├── spatial_properties.py │ └── sync_ │ │ └── semi_structured.py ├── exceptions.py ├── hooks.py ├── integration │ ├── numpy.py │ └── pandas.py ├── match_q.py ├── properties.py ├── py.typed ├── scripts │ ├── __init__.py │ ├── neomodel_generate_diagram.py │ ├── neomodel_inspect_database.py │ ├── neomodel_install_labels.py │ ├── neomodel_remove_labels.py │ └── utils.py ├── semantic_filters.py ├── sync_ │ ├── __init__.py │ ├── cardinality.py │ ├── database.py │ ├── match.py │ ├── node.py │ ├── path.py │ ├── property_manager.py │ ├── relationship.py │ ├── relationship_manager.py │ └── transaction.py ├── typing.py └── util.py ├── out └── neomodel │ ├── __init__.pyi │ ├── _version.pyi │ ├── async_ │ ├── __init__.pyi │ ├── cardinality.pyi │ ├── database.pyi │ ├── match.pyi │ ├── node.pyi │ ├── path.pyi │ ├── property_manager.pyi │ ├── relationship.pyi │ ├── relationship_manager.pyi │ └── transaction.pyi │ ├── config.pyi │ ├── constants.pyi │ ├── contrib │ ├── __init__.pyi │ └── spatial_properties.pyi │ ├── exceptions.pyi │ ├── hooks.pyi │ ├── match_q.pyi │ ├── properties.pyi │ ├── scripts │ ├── __init__.pyi │ ├── neomodel_generate_diagram.pyi │ ├── neomodel_inspect_database.pyi │ ├── neomodel_install_labels.pyi │ ├── neomodel_remove_labels.pyi │ └── utils.pyi │ ├── semantic_filters.pyi │ ├── sync_ │ ├── __init__.pyi │ ├── cardinality.pyi │ ├── database.pyi │ ├── match.pyi │ ├── node.pyi │ ├── path.pyi │ ├── property_manager.pyi │ ├── relationship.pyi │ ├── relationship_manager.pyi │ └── transaction.pyi │ ├── typing.pyi │ └── util.pyi ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt └── test ├── __init__.py ├── _async_compat ├── __init__.py └── mark_decorator.py ├── async_ ├── __init__.py ├── conftest.py ├── test_alias.py ├── test_batch.py ├── test_cardinality.py ├── test_connection.py ├── test_contrib │ ├── __init__.py │ ├── test_semi_structured.py │ ├── test_spatial_datatypes.py │ └── test_spatial_properties.py ├── test_core_additional.py ├── test_cypher.py ├── test_database_management.py ├── test_dbms_awareness.py ├── test_driver_options.py ├── test_exceptions.py ├── test_fulltextfilter.py ├── test_hooks.py ├── test_indexing.py ├── test_issue112.py ├── test_issue283.py ├── test_issue600.py ├── test_label_drop.py ├── test_label_install.py ├── test_match_api.py ├── test_migration_neo4j_5.py ├── test_models.py ├── test_multiprocessing.py ├── test_object_resolution.py ├── test_paths.py ├── test_properties.py ├── test_registry.py ├── test_relationship_models.py ├── test_relationships.py ├── test_relative_relationships.py ├── test_transactions.py └── test_vectorfilter.py ├── conftest.py ├── data ├── expected_model_diagram.json ├── expected_model_diagram.puml ├── neomodel_inspect_database_output.txt ├── neomodel_inspect_database_output_light.txt ├── neomodel_inspect_database_output_pre_5_7.txt └── neomodel_inspect_database_output_pre_5_7_light.txt ├── diagram_classes.py ├── sync_ ├── __init__.py ├── conftest.py ├── test_alias.py ├── test_batch.py ├── test_cardinality.py ├── test_connection.py ├── test_contrib │ ├── __init__.py │ ├── test_semi_structured.py │ ├── test_spatial_datatypes.py │ └── test_spatial_properties.py ├── test_core_additional.py ├── test_cypher.py ├── test_database_management.py ├── test_dbms_awareness.py ├── test_driver_options.py ├── test_exceptions.py ├── test_fulltextfilter.py ├── test_hooks.py ├── test_indexing.py ├── test_issue112.py ├── test_issue283.py ├── test_issue600.py ├── test_label_drop.py ├── test_label_install.py ├── test_match_api.py ├── test_migration_neo4j_5.py ├── test_models.py ├── test_multiprocessing.py ├── test_object_resolution.py ├── test_paths.py ├── test_properties.py ├── test_registry.py ├── test_relationship_models.py ├── test_relationships.py ├── test_relative_relationships.py ├── test_transactions.py └── test_vectorfilter.py ├── test_config_modernization.py ├── test_contrib └── test_spatial_props.py ├── test_exceptions_additional.py ├── test_properties_additional.py ├── test_scripts.py └── test_util.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.env -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/README.md -------------------------------------------------------------------------------- /bin/make-unasync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/bin/make-unasync -------------------------------------------------------------------------------- /dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/dev -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_copybutton 2 | neo4j~=5.28.2 3 | 4 | -------------------------------------------------------------------------------- /doc/source/_static/neomodel-148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_static/neomodel-148.png -------------------------------------------------------------------------------- /doc/source/_static/neomodel-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_static/neomodel-300.png -------------------------------------------------------------------------------- /doc/source/_themes/alabaster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_themes/alabaster/__init__.py -------------------------------------------------------------------------------- /doc/source/_themes/alabaster/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_themes/alabaster/_version.py -------------------------------------------------------------------------------- /doc/source/_themes/alabaster/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_themes/alabaster/about.html -------------------------------------------------------------------------------- /doc/source/_themes/alabaster/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_themes/alabaster/layout.html -------------------------------------------------------------------------------- /doc/source/_themes/alabaster/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_themes/alabaster/navigation.html -------------------------------------------------------------------------------- /doc/source/_themes/alabaster/static/alabaster.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_themes/alabaster/static/alabaster.css_t -------------------------------------------------------------------------------- /doc/source/_themes/alabaster/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_themes/alabaster/support.py -------------------------------------------------------------------------------- /doc/source/_themes/alabaster/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/_themes/alabaster/theme.conf -------------------------------------------------------------------------------- /doc/source/advanced_query_operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/advanced_query_operations.rst -------------------------------------------------------------------------------- /doc/source/batch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/batch.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/configuration.rst -------------------------------------------------------------------------------- /doc/source/cypher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/cypher.rst -------------------------------------------------------------------------------- /doc/source/extending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/extending.rst -------------------------------------------------------------------------------- /doc/source/filtering_ordering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/filtering_ordering.rst -------------------------------------------------------------------------------- /doc/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/getting_started.rst -------------------------------------------------------------------------------- /doc/source/hooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/hooks.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/module_documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/module_documentation.rst -------------------------------------------------------------------------------- /doc/source/module_documentation_async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/module_documentation_async.rst -------------------------------------------------------------------------------- /doc/source/module_documentation_sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/module_documentation_sync.rst -------------------------------------------------------------------------------- /doc/source/properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/properties.rst -------------------------------------------------------------------------------- /doc/source/relationships.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/relationships.rst -------------------------------------------------------------------------------- /doc/source/schema_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/schema_management.rst -------------------------------------------------------------------------------- /doc/source/semantic_indexes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/semantic_indexes.rst -------------------------------------------------------------------------------- /doc/source/spatial_properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/spatial_properties.rst -------------------------------------------------------------------------------- /doc/source/transactions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/transactions.rst -------------------------------------------------------------------------------- /doc/source/traversal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/doc/source/traversal.rst -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-scripts/docker-neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/docker-scripts/docker-neo4j.sh -------------------------------------------------------------------------------- /docker-scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/docker-scripts/readme.md -------------------------------------------------------------------------------- /docker-scripts/tests-with-docker-compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/docker-scripts/tests-with-docker-compose.sh -------------------------------------------------------------------------------- /model_diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/model_diagram.json -------------------------------------------------------------------------------- /model_diagram.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/model_diagram.puml -------------------------------------------------------------------------------- /neomodel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/__init__.py -------------------------------------------------------------------------------- /neomodel/_async_compat/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/_async_compat/util.py -------------------------------------------------------------------------------- /neomodel/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "6.0.0" 2 | -------------------------------------------------------------------------------- /neomodel/async_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neomodel/async_/cardinality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/cardinality.py -------------------------------------------------------------------------------- /neomodel/async_/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/database.py -------------------------------------------------------------------------------- /neomodel/async_/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/match.py -------------------------------------------------------------------------------- /neomodel/async_/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/node.py -------------------------------------------------------------------------------- /neomodel/async_/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/path.py -------------------------------------------------------------------------------- /neomodel/async_/property_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/property_manager.py -------------------------------------------------------------------------------- /neomodel/async_/relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/relationship.py -------------------------------------------------------------------------------- /neomodel/async_/relationship_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/relationship_manager.py -------------------------------------------------------------------------------- /neomodel/async_/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/async_/transaction.py -------------------------------------------------------------------------------- /neomodel/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/config.py -------------------------------------------------------------------------------- /neomodel/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/constants.py -------------------------------------------------------------------------------- /neomodel/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/contrib/__init__.py -------------------------------------------------------------------------------- /neomodel/contrib/async_/semi_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/contrib/async_/semi_structured.py -------------------------------------------------------------------------------- /neomodel/contrib/spatial_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/contrib/spatial_properties.py -------------------------------------------------------------------------------- /neomodel/contrib/sync_/semi_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/contrib/sync_/semi_structured.py -------------------------------------------------------------------------------- /neomodel/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/exceptions.py -------------------------------------------------------------------------------- /neomodel/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/hooks.py -------------------------------------------------------------------------------- /neomodel/integration/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/integration/numpy.py -------------------------------------------------------------------------------- /neomodel/integration/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/integration/pandas.py -------------------------------------------------------------------------------- /neomodel/match_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/match_q.py -------------------------------------------------------------------------------- /neomodel/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/properties.py -------------------------------------------------------------------------------- /neomodel/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neomodel/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neomodel/scripts/neomodel_generate_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/scripts/neomodel_generate_diagram.py -------------------------------------------------------------------------------- /neomodel/scripts/neomodel_inspect_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/scripts/neomodel_inspect_database.py -------------------------------------------------------------------------------- /neomodel/scripts/neomodel_install_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/scripts/neomodel_install_labels.py -------------------------------------------------------------------------------- /neomodel/scripts/neomodel_remove_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/scripts/neomodel_remove_labels.py -------------------------------------------------------------------------------- /neomodel/scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/scripts/utils.py -------------------------------------------------------------------------------- /neomodel/semantic_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/semantic_filters.py -------------------------------------------------------------------------------- /neomodel/sync_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neomodel/sync_/cardinality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/cardinality.py -------------------------------------------------------------------------------- /neomodel/sync_/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/database.py -------------------------------------------------------------------------------- /neomodel/sync_/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/match.py -------------------------------------------------------------------------------- /neomodel/sync_/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/node.py -------------------------------------------------------------------------------- /neomodel/sync_/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/path.py -------------------------------------------------------------------------------- /neomodel/sync_/property_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/property_manager.py -------------------------------------------------------------------------------- /neomodel/sync_/relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/relationship.py -------------------------------------------------------------------------------- /neomodel/sync_/relationship_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/relationship_manager.py -------------------------------------------------------------------------------- /neomodel/sync_/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/sync_/transaction.py -------------------------------------------------------------------------------- /neomodel/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/typing.py -------------------------------------------------------------------------------- /neomodel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/neomodel/util.py -------------------------------------------------------------------------------- /out/neomodel/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/__init__.pyi -------------------------------------------------------------------------------- /out/neomodel/_version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /out/neomodel/async_/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /out/neomodel/async_/cardinality.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/cardinality.pyi -------------------------------------------------------------------------------- /out/neomodel/async_/database.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/database.pyi -------------------------------------------------------------------------------- /out/neomodel/async_/match.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/match.pyi -------------------------------------------------------------------------------- /out/neomodel/async_/node.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/node.pyi -------------------------------------------------------------------------------- /out/neomodel/async_/path.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/path.pyi -------------------------------------------------------------------------------- /out/neomodel/async_/property_manager.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/property_manager.pyi -------------------------------------------------------------------------------- /out/neomodel/async_/relationship.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/relationship.pyi -------------------------------------------------------------------------------- /out/neomodel/async_/relationship_manager.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/relationship_manager.pyi -------------------------------------------------------------------------------- /out/neomodel/async_/transaction.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/async_/transaction.pyi -------------------------------------------------------------------------------- /out/neomodel/config.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/config.pyi -------------------------------------------------------------------------------- /out/neomodel/constants.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/constants.pyi -------------------------------------------------------------------------------- /out/neomodel/contrib/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/contrib/__init__.pyi -------------------------------------------------------------------------------- /out/neomodel/contrib/spatial_properties.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/contrib/spatial_properties.pyi -------------------------------------------------------------------------------- /out/neomodel/exceptions.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/exceptions.pyi -------------------------------------------------------------------------------- /out/neomodel/hooks.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/hooks.pyi -------------------------------------------------------------------------------- /out/neomodel/match_q.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/match_q.pyi -------------------------------------------------------------------------------- /out/neomodel/properties.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/properties.pyi -------------------------------------------------------------------------------- /out/neomodel/scripts/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /out/neomodel/scripts/neomodel_generate_diagram.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/scripts/neomodel_generate_diagram.pyi -------------------------------------------------------------------------------- /out/neomodel/scripts/neomodel_inspect_database.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/scripts/neomodel_inspect_database.pyi -------------------------------------------------------------------------------- /out/neomodel/scripts/neomodel_install_labels.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/scripts/neomodel_install_labels.pyi -------------------------------------------------------------------------------- /out/neomodel/scripts/neomodel_remove_labels.pyi: -------------------------------------------------------------------------------- 1 | from neomodel.sync_.database import db as db 2 | 3 | def main() -> None: ... 4 | -------------------------------------------------------------------------------- /out/neomodel/scripts/utils.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/scripts/utils.pyi -------------------------------------------------------------------------------- /out/neomodel/semantic_filters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/semantic_filters.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /out/neomodel/sync_/cardinality.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/cardinality.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/database.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/database.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/match.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/match.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/node.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/node.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/path.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/path.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/property_manager.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/property_manager.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/relationship.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/relationship.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/relationship_manager.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/relationship_manager.pyi -------------------------------------------------------------------------------- /out/neomodel/sync_/transaction.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/sync_/transaction.pyi -------------------------------------------------------------------------------- /out/neomodel/typing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/typing.pyi -------------------------------------------------------------------------------- /out/neomodel/util.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/out/neomodel/util.pyi -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | neo4j~=5.28.2 2 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/_async_compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/_async_compat/__init__.py -------------------------------------------------------------------------------- /test/_async_compat/mark_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/_async_compat/mark_decorator.py -------------------------------------------------------------------------------- /test/async_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/async_/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/conftest.py -------------------------------------------------------------------------------- /test/async_/test_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_alias.py -------------------------------------------------------------------------------- /test/async_/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_batch.py -------------------------------------------------------------------------------- /test/async_/test_cardinality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_cardinality.py -------------------------------------------------------------------------------- /test/async_/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_connection.py -------------------------------------------------------------------------------- /test/async_/test_contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/async_/test_contrib/test_semi_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_contrib/test_semi_structured.py -------------------------------------------------------------------------------- /test/async_/test_contrib/test_spatial_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_contrib/test_spatial_datatypes.py -------------------------------------------------------------------------------- /test/async_/test_contrib/test_spatial_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_contrib/test_spatial_properties.py -------------------------------------------------------------------------------- /test/async_/test_core_additional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_core_additional.py -------------------------------------------------------------------------------- /test/async_/test_cypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_cypher.py -------------------------------------------------------------------------------- /test/async_/test_database_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_database_management.py -------------------------------------------------------------------------------- /test/async_/test_dbms_awareness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_dbms_awareness.py -------------------------------------------------------------------------------- /test/async_/test_driver_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_driver_options.py -------------------------------------------------------------------------------- /test/async_/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_exceptions.py -------------------------------------------------------------------------------- /test/async_/test_fulltextfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_fulltextfilter.py -------------------------------------------------------------------------------- /test/async_/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_hooks.py -------------------------------------------------------------------------------- /test/async_/test_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_indexing.py -------------------------------------------------------------------------------- /test/async_/test_issue112.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_issue112.py -------------------------------------------------------------------------------- /test/async_/test_issue283.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_issue283.py -------------------------------------------------------------------------------- /test/async_/test_issue600.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_issue600.py -------------------------------------------------------------------------------- /test/async_/test_label_drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_label_drop.py -------------------------------------------------------------------------------- /test/async_/test_label_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_label_install.py -------------------------------------------------------------------------------- /test/async_/test_match_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_match_api.py -------------------------------------------------------------------------------- /test/async_/test_migration_neo4j_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_migration_neo4j_5.py -------------------------------------------------------------------------------- /test/async_/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_models.py -------------------------------------------------------------------------------- /test/async_/test_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_multiprocessing.py -------------------------------------------------------------------------------- /test/async_/test_object_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_object_resolution.py -------------------------------------------------------------------------------- /test/async_/test_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_paths.py -------------------------------------------------------------------------------- /test/async_/test_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_properties.py -------------------------------------------------------------------------------- /test/async_/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_registry.py -------------------------------------------------------------------------------- /test/async_/test_relationship_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_relationship_models.py -------------------------------------------------------------------------------- /test/async_/test_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_relationships.py -------------------------------------------------------------------------------- /test/async_/test_relative_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_relative_relationships.py -------------------------------------------------------------------------------- /test/async_/test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_transactions.py -------------------------------------------------------------------------------- /test/async_/test_vectorfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/async_/test_vectorfilter.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/data/expected_model_diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/data/expected_model_diagram.json -------------------------------------------------------------------------------- /test/data/expected_model_diagram.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/data/expected_model_diagram.puml -------------------------------------------------------------------------------- /test/data/neomodel_inspect_database_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/data/neomodel_inspect_database_output.txt -------------------------------------------------------------------------------- /test/data/neomodel_inspect_database_output_light.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/data/neomodel_inspect_database_output_light.txt -------------------------------------------------------------------------------- /test/data/neomodel_inspect_database_output_pre_5_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/data/neomodel_inspect_database_output_pre_5_7.txt -------------------------------------------------------------------------------- /test/data/neomodel_inspect_database_output_pre_5_7_light.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/data/neomodel_inspect_database_output_pre_5_7_light.txt -------------------------------------------------------------------------------- /test/diagram_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/diagram_classes.py -------------------------------------------------------------------------------- /test/sync_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sync_/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/conftest.py -------------------------------------------------------------------------------- /test/sync_/test_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_alias.py -------------------------------------------------------------------------------- /test/sync_/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_batch.py -------------------------------------------------------------------------------- /test/sync_/test_cardinality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_cardinality.py -------------------------------------------------------------------------------- /test/sync_/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_connection.py -------------------------------------------------------------------------------- /test/sync_/test_contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sync_/test_contrib/test_semi_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_contrib/test_semi_structured.py -------------------------------------------------------------------------------- /test/sync_/test_contrib/test_spatial_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_contrib/test_spatial_datatypes.py -------------------------------------------------------------------------------- /test/sync_/test_contrib/test_spatial_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_contrib/test_spatial_properties.py -------------------------------------------------------------------------------- /test/sync_/test_core_additional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_core_additional.py -------------------------------------------------------------------------------- /test/sync_/test_cypher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_cypher.py -------------------------------------------------------------------------------- /test/sync_/test_database_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_database_management.py -------------------------------------------------------------------------------- /test/sync_/test_dbms_awareness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_dbms_awareness.py -------------------------------------------------------------------------------- /test/sync_/test_driver_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_driver_options.py -------------------------------------------------------------------------------- /test/sync_/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_exceptions.py -------------------------------------------------------------------------------- /test/sync_/test_fulltextfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_fulltextfilter.py -------------------------------------------------------------------------------- /test/sync_/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_hooks.py -------------------------------------------------------------------------------- /test/sync_/test_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_indexing.py -------------------------------------------------------------------------------- /test/sync_/test_issue112.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_issue112.py -------------------------------------------------------------------------------- /test/sync_/test_issue283.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_issue283.py -------------------------------------------------------------------------------- /test/sync_/test_issue600.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_issue600.py -------------------------------------------------------------------------------- /test/sync_/test_label_drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_label_drop.py -------------------------------------------------------------------------------- /test/sync_/test_label_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_label_install.py -------------------------------------------------------------------------------- /test/sync_/test_match_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_match_api.py -------------------------------------------------------------------------------- /test/sync_/test_migration_neo4j_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_migration_neo4j_5.py -------------------------------------------------------------------------------- /test/sync_/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_models.py -------------------------------------------------------------------------------- /test/sync_/test_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_multiprocessing.py -------------------------------------------------------------------------------- /test/sync_/test_object_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_object_resolution.py -------------------------------------------------------------------------------- /test/sync_/test_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_paths.py -------------------------------------------------------------------------------- /test/sync_/test_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_properties.py -------------------------------------------------------------------------------- /test/sync_/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_registry.py -------------------------------------------------------------------------------- /test/sync_/test_relationship_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_relationship_models.py -------------------------------------------------------------------------------- /test/sync_/test_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_relationships.py -------------------------------------------------------------------------------- /test/sync_/test_relative_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_relative_relationships.py -------------------------------------------------------------------------------- /test/sync_/test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_transactions.py -------------------------------------------------------------------------------- /test/sync_/test_vectorfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/sync_/test_vectorfilter.py -------------------------------------------------------------------------------- /test/test_config_modernization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/test_config_modernization.py -------------------------------------------------------------------------------- /test/test_contrib/test_spatial_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/test_contrib/test_spatial_props.py -------------------------------------------------------------------------------- /test/test_exceptions_additional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/test_exceptions_additional.py -------------------------------------------------------------------------------- /test/test_properties_additional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/test_properties_additional.py -------------------------------------------------------------------------------- /test/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/test_scripts.py -------------------------------------------------------------------------------- /test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-contrib/neomodel/HEAD/test/test_util.py --------------------------------------------------------------------------------