graphdatascience 1.20a1__tar.gz → 1.21__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {graphdatascience-1.20a1/src/graphdatascience.egg-info → graphdatascience-1.21}/PKG-INFO +1 -1
- {graphdatascience-1.20a1 → graphdatascience-1.21}/pyproject.toml +7 -2
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/arrow_info.py +4 -3
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v2/mutation_client.py +14 -5
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/endpoints.py +11 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_cypher_runner.py +7 -7
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_entity_ops_runner.py +2 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/v2/graph_api.py +1 -1
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph_data_science.py +28 -17
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/catalog_endpoints.py +8 -2
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/graph_info.py +1 -1
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/graph_sampling_endpoints.py +49 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/model/model_catalog_endpoints.py +4 -2
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/__init__.py +10 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/max_flow_endpoints.py +9 -0
- graphdatascience-1.21/src/graphdatascience/procedure_surface/api/pathfinding/max_flow_min_cost_endpoints.py +248 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/steiner_tree_endpoints.py +5 -5
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/graph_sampling_arrow_endpoints.py +28 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/model/model_catalog_arrow_endpoints.py +10 -5
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/max_flow_arrow_endpoints.py +11 -0
- graphdatascience-1.21/src/graphdatascience/procedure_surface/arrow/pathfinding/max_flow_min_cost_arrow_endpoints.py +235 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/catalog/graph_sampling_cypher_endpoints.py +31 -4
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/model/model_catalog_cypher_endpoints.py +17 -5
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/max_flow_cypher_endpoints.py +8 -0
- graphdatascience-1.21/src/graphdatascience/procedure_surface/cypher/pathfinding/max_flow_min_cost_cypher_endpoints.py +231 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/utils/result_utils.py +2 -0
- graphdatascience-1.21/src/graphdatascience/query_runner/__init__.py +5 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/arrow_query_runner.py +20 -5
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/cypher_graph_constructor.py +4 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/db_environment_resolver.py +6 -2
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/neo4j_query_runner.py +41 -10
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/progress/query_progress_logger.py +0 -1
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/protocol/project_protocols.py +19 -2
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/protocol/write_protocols.py +6 -6
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/query_runner.py +10 -5
- graphdatascience-1.21/src/graphdatascience/query_runner/query_type.py +9 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/session_query_runner.py +37 -15
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/standalone_session_query_runner.py +16 -5
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/retry_utils/retry_config.py +1 -1
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/aura_api.py +21 -4
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/aura_graph_data_science.py +14 -4
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/dbms/protocol_resolver.py +2 -2
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/dedicated_sessions.py +19 -5
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/gds_sessions.py +23 -3
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/system/system_endpoints.py +4 -1
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/topological_lp/topological_lp_alpha_runner.py +3 -4
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/topological_lp/topological_lp_runner.py +14 -4
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/utils/direct_util_endpoints.py +5 -2
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/utils/util_proc_runner.py +3 -12
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/utils/util_remote_proc_runner.py +7 -2
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/version.py +1 -1
- {graphdatascience-1.20a1 → graphdatascience-1.21/src/graphdatascience.egg-info}/PKG-INFO +1 -1
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience.egg-info/SOURCES.txt +4 -1
- graphdatascience-1.20a1/src/graphdatascience/session/aurads_sessions.py +0 -0
- graphdatascience-1.20a1/src/graphdatascience/utils/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/LICENSE +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/MANIFEST.in +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/README.md +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/setup.cfg +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/algo/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/algo/algo_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/algo/algo_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/algo/single_mode_algo_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/arrow_authentication.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/arrow_base_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/arrow_client_options_util.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/arrow_endpoint_version.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/authenticated_flight_client.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/middleware/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/middleware/auth_middleware.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/middleware/user_agent_middleware.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/progress_callback.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v1/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v1/data_mapper_utils.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v1/gds_arrow_client.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v2/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v2/api_types.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v2/data_mapper_utils.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v2/gds_arrow_client.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v2/job_client.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/v2/remote_write_back_client.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/call_builder.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/call_parameters.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/caller_base.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/datasets/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/datasets/graph_constructor_func.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/datasets/nx_loader.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/datasets/ogb_loader.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/datasets/simple_file_loader.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/error/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/error/client_only_endpoint.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/error/cypher_warning_handler.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/error/endpoint_suggester.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/error/gds_not_installed.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/error/illegal_attr_checker.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/error/unable_to_connect.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/error/uncallable_namespace.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/base_graph_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_alpha_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_beta_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_create_result.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_export_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_object.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_project_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_remote_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_remote_project_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_sample_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_type_check.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/nx_loader.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/ogb_loader.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/v2/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/v2/graph_backend.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/v2/graph_backend_cypher.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/ignored_server_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/graphsage_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/link_prediction_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/model_alpha_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/model_beta_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/model_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/model_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/model_resolver.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/node_classification_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/node_regression_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/pipeline_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/simple_rel_embedding_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/v2/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/v2/graphsage_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/v2/model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/v2/model_api.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/model/v2/model_details.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/classification_training_pipeline.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/lp_pipeline_create_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/lp_training_pipeline.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/nc_pipeline_create_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/nc_training_pipeline.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/nr_pipeline_create_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/nr_training_pipeline.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/pipeline_alpha_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/pipeline_beta_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/pipeline_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/pipeline_proc_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/pipeline/training_pipeline.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/plugin_v2_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/base_result.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/dataset_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/node_label_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/node_properties_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/relationships_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/scale_properties_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/catalog/scaler_config.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/articlerank_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/articulationpoints_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/betweenness_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/bridges_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/celf_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/closeness_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/closeness_harmonic_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/degree_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/eigenvector_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/centrality/pagerank_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/clique_counting_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/conductance_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/hdbscan_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/k1coloring_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/kcore_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/kmeans_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/labelpropagation_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/leiden_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/local_clustering_coefficient_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/louvain_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/maxkcut_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/modularity_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/modularity_optimization_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/scc_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/sllpa_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/triangle_count_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/community/wcc_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/config_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/default_values.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/estimation_result.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/model/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/model/graphsage_model.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/node_embedding/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/node_embedding/fastrp_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_predict_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_train_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/node_embedding/hashgnn_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/node_embedding/node2vec_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/all_shortest_path_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/bfs_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/dag_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/dfs_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/dijkstra_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/k_spanning_tree_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/longest_path_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/prize_steiner_tree_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/shortest_path_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_bellman_ford_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_delta_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_dijkstra_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_astar_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_dijkstra_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_yens_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/pathfinding/spanning_tree_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/similarity/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/similarity/knn_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/similarity/knn_filtered_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/similarity/knn_results.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_filtered_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_results.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/api/system_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/catalog_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/graph_backend_arrow.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/graph_ops_arrow.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/node_label_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/node_properties_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/relationship_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/catalog/scale_properties_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/articlerank_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/articulationpoints_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/betweenness_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/bridges_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/celf_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_harmonic_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/degree_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/eigenvector_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/centrality/pagerank_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/clique_counting_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/conductance_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/hdbscan_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/k1coloring_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/kcore_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/kmeans_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/labelpropagation_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/leiden_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/local_clustering_coefficient_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/louvain_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/maxkcut_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/modularity_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/modularity_optimization_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/scc_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/sllpa_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/triangle_count_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/community/wcc_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/config_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/endpoints_helper_base.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/error_handler.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/model/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/model_api_arrow.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/node_embedding/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/node_embedding/fastrp_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_predict_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_train_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/node_embedding/hashgnn_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/node_embedding/node2vec_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/node_property_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/all_shortest_path_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/bfs_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/dag_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/dfs_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/dijkstra_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/k_spanning_tree_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/longest_path_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/prize_steiner_tree_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/shortest_path_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_bellman_ford_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_delta_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_dijkstra_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_astar_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_dijkstra_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_yens_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/spanning_tree_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/pathfinding/steiner_tree_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/relationship_endpoints_helper.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/similarity/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/similarity/knn_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/similarity/knn_filtered_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_filtered_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/stream_result_mapper.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/system_arrow_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/arrow/table_endpoints_helper.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/catalog/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/catalog/catalog_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/catalog/node_label_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/catalog/node_properties_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/catalog/relationship_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/catalog/scale_properties_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/catalog/utils.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/articlerank_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/articulationpoints_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/betweenness_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/bridges_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/celf_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_harmonic_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/degree_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/eigenvector_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/centrality/pagerank_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/clique_counting_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/conductance_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/hdbscan_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/k1coloring_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/kcore_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/kmeans_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/labelpropagation_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/leiden_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/local_clustering_coefficient_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/louvain_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/maxkcut_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/modularity_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/modularity_optimization_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/scc_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/sllpa_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/triangle_count_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/community/wcc_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/config_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/estimation_utils.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/model/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/model_api_cypher.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/node_embedding/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/node_embedding/fastrp_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_predict_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_train_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/node_embedding/hashgnn_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/node_embedding/node2vec_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/all_shortest_path_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/bfs_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/dag_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/dfs_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/dijkstra_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/k_spanning_tree_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/longest_path_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/prize_steiner_tree_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/shortest_path_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_bellman_ford_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_delta_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_dijkstra_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_astar_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_dijkstra_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_yens_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/spanning_tree_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/pathfinding/steiner_tree_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/similarity/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/similarity/knn_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/similarity/knn_filtered_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_filtered_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/cypher/system_cypher_endpoints.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/utils/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/procedure_surface/utils/config_converter.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/py.typed +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/arrow_authentication/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/arrow_graph_constructor.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/arrow_info/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/gds_arrow_client.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/graph_constructor.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/query_runner → graphdatascience-1.21/src/graphdatascience/query_runner/progress}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/progress/progress_bar.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/progress/progress_provider.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/progress/query_progress_provider.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/progress/static_progress_provider.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/query_runner/progress → graphdatascience-1.21/src/graphdatascience/query_runner/protocol}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/protocol/status.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/query_mode.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/query_runner/termination_flag.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/query_runner/protocol → graphdatascience-1.21/src/graphdatascience/resources}/__init__.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/resources → graphdatascience-1.21/src/graphdatascience/resources/cora}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/cora/cora_nodes.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/cora/cora_rels.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/cora/serialize_cora.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/resources/cora → graphdatascience-1.21/src/graphdatascience/resources/imdb}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/imdb/imdb_acted_in.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/imdb/imdb_actors.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/imdb/imdb_directed_in.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/imdb/imdb_directors.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/imdb/imdb_movies_with_genre.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/imdb/imdb_movies_without_genre.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/imdb/serialize_imdb.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/resources/imdb → graphdatascience-1.21/src/graphdatascience/resources/karate}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/karate/karate_club.parquet.gzip +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/resources/karate → graphdatascience-1.21/src/graphdatascience/resources/lastfm}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/lastfm/artist_nodes.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/lastfm/serialize_lastfm.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/lastfm/user_friend_df_directed.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/lastfm/user_listen_artist_rels.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/lastfm/user_nodes.parquet.gzip +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/resources/lastfm/user_tag_artist_rels.parquet.gzip +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/resources/lastfm → graphdatascience-1.21/src/graphdatascience/retry_utils}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/retry_utils/neo4j_retry_helper.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/retry_utils/retry_utils.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/retry_utils → graphdatascience-1.21/src/graphdatascience/semantic_version}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/semantic_version/semantic_version.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/semantic_version → graphdatascience-1.21/src/graphdatascience/server_version}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/server_version/compatible_with.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/server_version/server_version.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/algorithm_category.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/aura_api_responses.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/aura_api_token_authentication.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/cloud_location.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/server_version → graphdatascience-1.21/src/graphdatascience/session/dbms}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/dbms/protocol_version.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/dbms_connection_info.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/region_suggester.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/session_info.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/session_lifecycle_manager.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/session_sizes.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/session/session_v2_endpoints.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/session/dbms → graphdatascience-1.21/src/graphdatascience/system}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/system/config_endpoints.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/system → graphdatascience-1.21/src/graphdatascience/topological_lp}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/topological_lp/topological_lp_alpha_endpoints.py +0 -0
- {graphdatascience-1.20a1/src/graphdatascience/topological_lp → graphdatascience-1.21/src/graphdatascience/utils}/__init__.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/utils/util_node_property_func_runner.py +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience.egg-info/dependency_links.txt +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience.egg-info/not-zip-safe +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience.egg-info/requires.txt +0 -0
- {graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience.egg-info/top_level.txt +0 -0
|
@@ -54,13 +54,12 @@ rust-ext = ["neo4j-rust-ext >= 4.4.12, < 7.0"]
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
[dependency-groups]
|
|
57
|
-
# To install all development dependencies,
|
|
58
|
-
# run `pip install --group dev -e .` inside repository root folder.#
|
|
59
57
|
dev = [
|
|
60
58
|
"tox>4.24",
|
|
61
59
|
{ include-group = "dev-base" },
|
|
62
60
|
{ include-group = "test" },
|
|
63
61
|
{ include-group = "docs-ci" },
|
|
62
|
+
{ include-group = "notebook-base"}
|
|
64
63
|
]
|
|
65
64
|
|
|
66
65
|
dev-base = [
|
|
@@ -79,6 +78,7 @@ dev-base = [
|
|
|
79
78
|
]
|
|
80
79
|
test = [
|
|
81
80
|
"pytest == 9.0.2",
|
|
81
|
+
"pytest-timeout",
|
|
82
82
|
"requests_mock == 1.12.1",
|
|
83
83
|
"pytest_mock == 3.15.1",
|
|
84
84
|
"testcontainers == 4.14.0",
|
|
@@ -89,6 +89,7 @@ docs-ci = [
|
|
|
89
89
|
"sphinx == 7.3.7",
|
|
90
90
|
"enum-tools[sphinx]==0.13.0",
|
|
91
91
|
"autodoc_pydantic",
|
|
92
|
+
"networkx >= 2.0, < 4.0"
|
|
92
93
|
]
|
|
93
94
|
notebook-base = [
|
|
94
95
|
"nbconvert==7.16.6",
|
|
@@ -111,6 +112,10 @@ notebook-ci = [
|
|
|
111
112
|
|
|
112
113
|
publish = ["build", "twine"]
|
|
113
114
|
|
|
115
|
+
[tool.uv.extra-build-dependencies]
|
|
116
|
+
torch-sparse = ["torch"]
|
|
117
|
+
torch-scatter = ["torch"]
|
|
118
|
+
|
|
114
119
|
[tool.setuptools]
|
|
115
120
|
include-package-data = true
|
|
116
121
|
zip-safe = false
|
{graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/arrow_client/arrow_info.py
RENAMED
|
@@ -2,8 +2,9 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
from dataclasses import dataclass
|
|
4
4
|
|
|
5
|
-
from
|
|
6
|
-
from
|
|
5
|
+
from graphdatascience.query_runner.query_runner import QueryRunner
|
|
6
|
+
from graphdatascience.query_runner.query_type import QueryType
|
|
7
|
+
from graphdatascience.server_version.server_version import ServerVersion
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
@dataclass(frozen=True)
|
|
@@ -20,7 +21,7 @@ class ArrowInfo:
|
|
|
20
21
|
debugYields.append("versions")
|
|
21
22
|
|
|
22
23
|
procResult = query_runner.call_procedure(
|
|
23
|
-
endpoint="gds.debug.arrow", custom_error=False, yields=debugYields
|
|
24
|
+
endpoint="gds.debug.arrow", query_type=QueryType.SYSTEM, custom_error=False, yields=debugYields
|
|
24
25
|
).iloc[0]
|
|
25
26
|
|
|
26
27
|
return ArrowInfo(
|
|
@@ -10,11 +10,17 @@ class MutationClient:
|
|
|
10
10
|
MUTATE_ENDPOINT = "v2/results.mutate"
|
|
11
11
|
|
|
12
12
|
@staticmethod
|
|
13
|
-
def mutate_node_property(
|
|
13
|
+
def mutate_node_property(
|
|
14
|
+
client: AuthenticatedArrowClient,
|
|
15
|
+
result_store_job_id: str,
|
|
16
|
+
mutate_property: str,
|
|
17
|
+
process_job_id: str | None = None,
|
|
18
|
+
) -> MutateResult:
|
|
14
19
|
return MutationClient._mutate(
|
|
15
20
|
client=client,
|
|
16
|
-
|
|
21
|
+
result_store_job_id=result_store_job_id,
|
|
17
22
|
mutate_property=mutate_property,
|
|
23
|
+
process_job_id=process_job_id,
|
|
18
24
|
)
|
|
19
25
|
|
|
20
26
|
@staticmethod
|
|
@@ -26,7 +32,7 @@ class MutationClient:
|
|
|
26
32
|
) -> MutateResult:
|
|
27
33
|
return MutationClient._mutate(
|
|
28
34
|
client=client,
|
|
29
|
-
|
|
35
|
+
result_store_job_id=job_id,
|
|
30
36
|
mutate_property=mutate_property,
|
|
31
37
|
mutate_relationship_type=mutate_relationship_type,
|
|
32
38
|
)
|
|
@@ -34,13 +40,16 @@ class MutationClient:
|
|
|
34
40
|
@staticmethod
|
|
35
41
|
def _mutate(
|
|
36
42
|
client: AuthenticatedArrowClient,
|
|
37
|
-
|
|
43
|
+
result_store_job_id: str,
|
|
44
|
+
process_job_id: str | None = None,
|
|
38
45
|
mutate_property: str | None = None,
|
|
39
46
|
mutate_relationship_type: str | None = None,
|
|
40
47
|
) -> MutateResult:
|
|
41
48
|
mutate_config = {
|
|
42
|
-
"jobId":
|
|
49
|
+
"jobId": result_store_job_id,
|
|
43
50
|
}
|
|
51
|
+
if process_job_id:
|
|
52
|
+
mutate_config["processJobId"] = process_job_id
|
|
44
53
|
if mutate_relationship_type:
|
|
45
54
|
mutate_config["mutateRelationshipType"] = mutate_relationship_type
|
|
46
55
|
if mutate_property:
|
|
@@ -43,6 +43,17 @@ class DirectEndpoints(
|
|
|
43
43
|
super().__init__(query_runner, namespace, server_version)
|
|
44
44
|
|
|
45
45
|
|
|
46
|
+
class DirectSessionEndpoints(
|
|
47
|
+
SingleModeAlgoEndpoints,
|
|
48
|
+
DirectSystemEndpoints,
|
|
49
|
+
DirectUtilEndpoints,
|
|
50
|
+
PipelineEndpoints,
|
|
51
|
+
ConfigEndpoints,
|
|
52
|
+
):
|
|
53
|
+
def __init__(self, query_runner: QueryRunner, namespace: str, server_version: ServerVersion):
|
|
54
|
+
super().__init__(query_runner, namespace, server_version)
|
|
55
|
+
|
|
56
|
+
|
|
46
57
|
"""
|
|
47
58
|
This class should inherit endpoint classes that only expose calls of the `gds.alpha` namespace.
|
|
48
59
|
Example of such endpoints: "gds.alpha.listProgress".
|
{graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph/graph_cypher_runner.py
RENAMED
|
@@ -6,13 +6,13 @@ from typing import Any
|
|
|
6
6
|
|
|
7
7
|
from pandas import Series
|
|
8
8
|
|
|
9
|
+
from graphdatascience.caller_base import CallerBase
|
|
10
|
+
from graphdatascience.graph.graph_create_result import GraphCreateResult
|
|
11
|
+
from graphdatascience.graph.graph_object import Graph
|
|
9
12
|
from graphdatascience.query_runner.query_mode import QueryMode
|
|
10
|
-
|
|
11
|
-
from
|
|
12
|
-
from
|
|
13
|
-
from ..server_version.server_version import ServerVersion
|
|
14
|
-
from .graph_create_result import GraphCreateResult
|
|
15
|
-
from .graph_object import Graph
|
|
13
|
+
from graphdatascience.query_runner.query_runner import QueryRunner
|
|
14
|
+
from graphdatascience.query_runner.query_type import QueryType
|
|
15
|
+
from graphdatascience.server_version.server_version import ServerVersion
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
class GraphCypherRunner(CallerBase):
|
|
@@ -48,7 +48,7 @@ class GraphCypherRunner(CallerBase):
|
|
|
48
48
|
GraphCypherRunner._verify_query_ends_with_return_clause(self._namespace, query)
|
|
49
49
|
|
|
50
50
|
result: dict[str, Any] | None = self._query_runner.run_retryable_cypher(
|
|
51
|
-
query, params, database, custom_error=False, mode=QueryMode.READ
|
|
51
|
+
query, QueryType.USER_DIRECTED, params, database, custom_error=False, mode=QueryMode.READ
|
|
52
52
|
).squeeze()
|
|
53
53
|
|
|
54
54
|
if not result:
|
|
@@ -8,6 +8,7 @@ import pandas as pd
|
|
|
8
8
|
from pandas import DataFrame, Series
|
|
9
9
|
|
|
10
10
|
from graphdatascience.query_runner.query_mode import QueryMode
|
|
11
|
+
from graphdatascience.query_runner.query_type import QueryType
|
|
11
12
|
|
|
12
13
|
from ..call_parameters import CallParameters
|
|
13
14
|
from ..error.cypher_warning_handler import (
|
|
@@ -169,6 +170,7 @@ class GraphNodePropertiesRunner(GraphEntityOpsBaseRunner):
|
|
|
169
170
|
|
|
170
171
|
db_properties_df = query_runner.run_retryable_cypher(
|
|
171
172
|
GraphNodePropertiesRunner._build_query(db_node_properties),
|
|
173
|
+
QueryType.USER_TRANSPILED,
|
|
172
174
|
params={"ids": unique_node_ids},
|
|
173
175
|
mode=QueryMode.READ,
|
|
174
176
|
)
|
{graphdatascience-1.20a1 → graphdatascience-1.21}/src/graphdatascience/graph_data_science.py
RENAMED
|
@@ -22,6 +22,7 @@ from .query_runner.arrow_info import ArrowInfo
|
|
|
22
22
|
from .query_runner.arrow_query_runner import ArrowQueryRunner
|
|
23
23
|
from .query_runner.neo4j_query_runner import Neo4jQueryRunner
|
|
24
24
|
from .query_runner.query_runner import QueryRunner
|
|
25
|
+
from .query_runner.query_type import QueryType
|
|
25
26
|
from .server_version.server_version import ServerVersion
|
|
26
27
|
from .utils.util_proc_runner import UtilProcRunner
|
|
27
28
|
from .version import __min_server_version__
|
|
@@ -93,7 +94,7 @@ class GraphDataScience(DirectEndpoints, UncallableNamespace):
|
|
|
93
94
|
if isinstance(endpoint, QueryRunner):
|
|
94
95
|
self._query_runner = endpoint
|
|
95
96
|
else:
|
|
96
|
-
db_auth = None
|
|
97
|
+
db_auth: neo4j.Auth | None = None
|
|
97
98
|
if auth:
|
|
98
99
|
db_auth = neo4j.basic_auth(*auth)
|
|
99
100
|
neo4j_query_runner = Neo4jQueryRunner.create_for_db(
|
|
@@ -118,21 +119,29 @@ class GraphDataScience(DirectEndpoints, UncallableNamespace):
|
|
|
118
119
|
if auth is not None:
|
|
119
120
|
username, password = auth
|
|
120
121
|
arrow_auth = UsernamePasswordAuthentication(username, password)
|
|
122
|
+
if isinstance(endpoint, Neo4jQueryRunner):
|
|
123
|
+
if neo4j_auth := endpoint.get_auth():
|
|
124
|
+
arrow_auth = UsernamePasswordAuthentication(neo4j_auth[0], neo4j_auth[1])
|
|
121
125
|
|
|
122
|
-
if
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
126
|
+
if isinstance(endpoint, Driver) and not auth:
|
|
127
|
+
warnings.warn(
|
|
128
|
+
"Falling back to use Cypher for GDS. To use Arrow, you must explicitly provide the `auth` parameter."
|
|
129
|
+
)
|
|
130
|
+
else:
|
|
131
|
+
if arrow_client_options is None:
|
|
132
|
+
arrow_client_options = {}
|
|
133
|
+
if arrow_disable_server_verification:
|
|
134
|
+
disable_server_verification(arrow_client_options)
|
|
135
|
+
if arrow_tls_root_certs is not None:
|
|
136
|
+
set_tls_root_certs(arrow_client_options, arrow_tls_root_certs)
|
|
137
|
+
self._query_runner = ArrowQueryRunner.create(
|
|
138
|
+
self._query_runner,
|
|
139
|
+
arrow_info=arrow_info,
|
|
140
|
+
arrow_authentication=arrow_auth,
|
|
141
|
+
encrypted=self._query_runner.encrypted(),
|
|
142
|
+
arrow_client_options=arrow_client_options,
|
|
143
|
+
connection_string_override=None if arrow is True else arrow,
|
|
144
|
+
)
|
|
136
145
|
|
|
137
146
|
arrow_client = (
|
|
138
147
|
None if not isinstance(self._query_runner, ArrowQueryRunner) else self._query_runner._gds_arrow_client
|
|
@@ -258,15 +267,16 @@ class GraphDataScience(DirectEndpoints, UncallableNamespace):
|
|
|
258
267
|
The query result as a DataFrame
|
|
259
268
|
"""
|
|
260
269
|
qr = self._query_runner
|
|
270
|
+
query_type = QueryType.USER_DIRECTED
|
|
261
271
|
|
|
262
272
|
# The Arrow query runner should not be used to execute arbitrary Cypher
|
|
263
273
|
if isinstance(self._query_runner, ArrowQueryRunner):
|
|
264
274
|
qr = self._query_runner.fallback_query_runner()
|
|
265
275
|
|
|
266
276
|
if retryable:
|
|
267
|
-
return qr.run_retryable_cypher(query, params, database, custom_error=False, mode=mode)
|
|
277
|
+
return qr.run_retryable_cypher(query, query_type, params, database, custom_error=False, mode=mode)
|
|
268
278
|
else:
|
|
269
|
-
return qr.run_cypher(query, params, database, custom_error=False, mode=mode)
|
|
279
|
+
return qr.run_cypher(query, query_type, params, database, custom_error=False, mode=mode)
|
|
270
280
|
|
|
271
281
|
def driver_config(self) -> dict[str, Any]:
|
|
272
282
|
"""
|
|
@@ -310,6 +320,7 @@ class GraphDataScience(DirectEndpoints, UncallableNamespace):
|
|
|
310
320
|
The Neo4j Driver instance to use.
|
|
311
321
|
auth : tuple[str, str] | None, default None
|
|
312
322
|
A username, password pair for authentication.
|
|
323
|
+
Is required for enabling Arrow.
|
|
313
324
|
database: str | None, default None
|
|
314
325
|
The Neo4j database to query against.
|
|
315
326
|
arrow : str | bool, default True
|
|
@@ -2,9 +2,10 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
from abc import ABC, abstractmethod
|
|
4
4
|
from types import TracebackType
|
|
5
|
-
from typing import NamedTuple, Type
|
|
5
|
+
from typing import Any, NamedTuple, Type
|
|
6
6
|
|
|
7
7
|
from pandas import DataFrame
|
|
8
|
+
from pydantic import field_validator
|
|
8
9
|
|
|
9
10
|
from graphdatascience.graph.v2.graph_api import GraphV2
|
|
10
11
|
from graphdatascience.procedure_surface.api.base_result import BaseResult
|
|
@@ -245,7 +246,12 @@ class GraphGenerationStats(BaseResult):
|
|
|
245
246
|
relationship_seed: int | None
|
|
246
247
|
average_degree: float
|
|
247
248
|
relationship_distribution: str
|
|
248
|
-
relationship_property: RelationshipPropertySpec
|
|
249
|
+
relationship_property: RelationshipPropertySpec | None
|
|
250
|
+
|
|
251
|
+
@field_validator("relationship_property", mode="before")
|
|
252
|
+
@classmethod
|
|
253
|
+
def check_empty_property(cls, value: Any) -> Any:
|
|
254
|
+
return value or None
|
|
249
255
|
|
|
250
256
|
|
|
251
257
|
class RelationshipPropertySpec(BaseResult):
|
|
@@ -15,7 +15,7 @@ class GraphInfo(BaseResult):
|
|
|
15
15
|
database: str
|
|
16
16
|
database_location: str
|
|
17
17
|
configuration: dict[str, Any]
|
|
18
|
-
memory_usage: str
|
|
18
|
+
memory_usage: str | None # can be none if there was an error computing the usage
|
|
19
19
|
size_in_bytes: int
|
|
20
20
|
node_count: int
|
|
21
21
|
relationship_count: int
|
|
@@ -7,6 +7,7 @@ from typing import NamedTuple, Type
|
|
|
7
7
|
from graphdatascience.graph.v2.graph_api import GraphV2
|
|
8
8
|
from graphdatascience.procedure_surface.api.base_result import BaseResult
|
|
9
9
|
from graphdatascience.procedure_surface.api.default_values import ALL_LABELS, ALL_TYPES
|
|
10
|
+
from graphdatascience.procedure_surface.api.estimation_result import EstimationResult
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
class GraphSamplingEndpoints(ABC):
|
|
@@ -146,6 +147,54 @@ class GraphSamplingEndpoints(ABC):
|
|
|
146
147
|
"""
|
|
147
148
|
pass
|
|
148
149
|
|
|
150
|
+
@abstractmethod
|
|
151
|
+
def estimate(
|
|
152
|
+
self,
|
|
153
|
+
G: GraphV2,
|
|
154
|
+
start_nodes: list[int] | None = None,
|
|
155
|
+
restart_probability: float = 0.1,
|
|
156
|
+
sampling_ratio: float = 0.15,
|
|
157
|
+
node_label_stratification: bool = False,
|
|
158
|
+
relationship_weight_property: str | None = None,
|
|
159
|
+
relationship_types: list[str] = ALL_TYPES,
|
|
160
|
+
node_labels: list[str] = ALL_LABELS,
|
|
161
|
+
concurrency: int | None = None,
|
|
162
|
+
) -> EstimationResult:
|
|
163
|
+
"""
|
|
164
|
+
Estimate the memory consumption of a CNARW algorithm run.
|
|
165
|
+
|
|
166
|
+
Parameters
|
|
167
|
+
----------
|
|
168
|
+
G
|
|
169
|
+
Graph object to use
|
|
170
|
+
start_nodes : list of int, optional
|
|
171
|
+
IDs of the initial set of nodes in the original graph from which the sampling random walks will start.
|
|
172
|
+
By default, a single node is chosen uniformly at random.
|
|
173
|
+
restart_probability : float, optional
|
|
174
|
+
The probability that a sampling random walk restarts from one of the start nodes.
|
|
175
|
+
Default is 0.1.
|
|
176
|
+
sampling_ratio : float, optional
|
|
177
|
+
The fraction of nodes in the original graph to be sampled.
|
|
178
|
+
Default is 0.15.
|
|
179
|
+
node_label_stratification : bool, optional
|
|
180
|
+
If true, preserves the node label distribution of the original graph.
|
|
181
|
+
Default is False.
|
|
182
|
+
relationship_weight_property
|
|
183
|
+
Name of the property to be used as weights.
|
|
184
|
+
relationship_types
|
|
185
|
+
Filter the graph using the given relationship types. Relationships with any of the given types will be included.
|
|
186
|
+
node_labels
|
|
187
|
+
Filter the graph using the given node labels. Nodes with any of the given labels will be included.
|
|
188
|
+
concurrency
|
|
189
|
+
Number of concurrent threads to use.
|
|
190
|
+
|
|
191
|
+
Returns
|
|
192
|
+
-------
|
|
193
|
+
EstimationResult
|
|
194
|
+
Memory estimation details
|
|
195
|
+
"""
|
|
196
|
+
pass
|
|
197
|
+
|
|
149
198
|
|
|
150
199
|
class GraphSamplingResult(BaseResult):
|
|
151
200
|
graph_name: str
|
|
@@ -69,7 +69,7 @@ class ModelCatalogEndpoints(ABC):
|
|
|
69
69
|
"""
|
|
70
70
|
|
|
71
71
|
@abstractmethod
|
|
72
|
-
def drop(self, model_name: str, *, fail_if_missing: bool = False) -> ModelDetails:
|
|
72
|
+
def drop(self, model_name: str, *, fail_if_missing: bool = False) -> ModelDetails | None:
|
|
73
73
|
"""Drop a model from the in-memory catalog.
|
|
74
74
|
|
|
75
75
|
Parameters
|
|
@@ -86,13 +86,15 @@ class ModelCatalogEndpoints(ABC):
|
|
|
86
86
|
"""
|
|
87
87
|
|
|
88
88
|
@abstractmethod
|
|
89
|
-
def delete(self, model_name: str) -> ModelDeleteResult:
|
|
89
|
+
def delete(self, model_name: str, fail_if_missing: bool = False) -> ModelDeleteResult | None:
|
|
90
90
|
"""Delete a persisted model from storage.
|
|
91
91
|
|
|
92
92
|
Parameters
|
|
93
93
|
----------
|
|
94
94
|
model_name: str
|
|
95
95
|
The model to delete.
|
|
96
|
+
fail_if_missing: bool
|
|
97
|
+
If True, a missing model will cause an error. If False, returns None when missing.
|
|
96
98
|
|
|
97
99
|
Returns
|
|
98
100
|
-------
|
|
@@ -27,6 +27,12 @@ from graphdatascience.procedure_surface.api.pathfinding.max_flow_endpoints impor
|
|
|
27
27
|
MaxFlowStatsResult,
|
|
28
28
|
MaxFlowWriteResult,
|
|
29
29
|
)
|
|
30
|
+
from graphdatascience.procedure_surface.api.pathfinding.max_flow_min_cost_endpoints import (
|
|
31
|
+
MaxFlowMinCostEndpoints,
|
|
32
|
+
MaxFlowMinCostMutateResult,
|
|
33
|
+
MaxFlowMinCostStatsResult,
|
|
34
|
+
MaxFlowMinCostWriteResult,
|
|
35
|
+
)
|
|
30
36
|
from graphdatascience.procedure_surface.api.pathfinding.prize_steiner_tree_endpoints import (
|
|
31
37
|
PrizeSteinerTreeEndpoints,
|
|
32
38
|
PrizeSteinerTreeMutateResult,
|
|
@@ -105,6 +111,10 @@ __all__ = [
|
|
|
105
111
|
"MaxFlowWriteResult",
|
|
106
112
|
"MaxFlowStatsResult",
|
|
107
113
|
"MaxFlowMutateResult",
|
|
114
|
+
"MaxFlowMinCostEndpoints",
|
|
115
|
+
"MaxFlowMinCostWriteResult",
|
|
116
|
+
"MaxFlowMinCostStatsResult",
|
|
117
|
+
"MaxFlowMinCostMutateResult",
|
|
108
118
|
"PrizeSteinerTreeEndpoints",
|
|
109
119
|
"PrizeSteinerTreeMutateResult",
|
|
110
120
|
"PrizeSteinerTreeStatsResult",
|
|
@@ -9,9 +9,18 @@ from graphdatascience.graph.v2.graph_api import GraphV2
|
|
|
9
9
|
from graphdatascience.procedure_surface.api.base_result import BaseResult
|
|
10
10
|
from graphdatascience.procedure_surface.api.default_values import ALL_LABELS, ALL_TYPES
|
|
11
11
|
from graphdatascience.procedure_surface.api.estimation_result import EstimationResult
|
|
12
|
+
from graphdatascience.procedure_surface.api.pathfinding.max_flow_min_cost_endpoints import MaxFlowMinCostEndpoints
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
class MaxFlowEndpoints(ABC):
|
|
16
|
+
@property
|
|
17
|
+
@abstractmethod
|
|
18
|
+
def min_cost(self) -> MaxFlowMinCostEndpoints:
|
|
19
|
+
"""
|
|
20
|
+
Container for Min-Cost Max Flow algorithm endpoints.
|
|
21
|
+
"""
|
|
22
|
+
...
|
|
23
|
+
|
|
15
24
|
@abstractmethod
|
|
16
25
|
def mutate(
|
|
17
26
|
self,
|