graphdatascience 1.19__tar.gz → 1.19a1__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.
Files changed (427) hide show
  1. {graphdatascience-1.19/src/graphdatascience.egg-info → graphdatascience-1.19a1}/PKG-INFO +1 -1
  2. {graphdatascience-1.19 → graphdatascience-1.19a1}/pyproject.toml +13 -12
  3. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/plugin_v2_endpoints.py +0 -29
  4. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/max_flow_endpoints.py +0 -15
  5. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/endpoints_helper_base.py +6 -6
  6. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/max_flow_arrow_endpoints.py +0 -10
  7. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/stream_result_mapper.py +0 -14
  8. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/max_flow_cypher_endpoints.py +0 -10
  9. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/session_v2_endpoints.py +0 -29
  10. graphdatascience-1.19a1/src/graphdatascience/utils/__init__.py +0 -0
  11. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/version.py +1 -1
  12. {graphdatascience-1.19 → graphdatascience-1.19a1/src/graphdatascience.egg-info}/PKG-INFO +1 -1
  13. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience.egg-info/SOURCES.txt +0 -9
  14. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/centrality/bridges_endpoints.py +0 -82
  15. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/model/__init__.py +0 -15
  16. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/model/model_catalog_endpoints.py +0 -133
  17. graphdatascience-1.19/src/graphdatascience/procedure_surface/api/pathfinding/bfs_endpoints.py +0 -222
  18. graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/centrality/bridges_arrow_endpoints.py +0 -60
  19. graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/model/model_catalog_arrow_endpoints.py +0 -92
  20. graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/pathfinding/bfs_arrow_endpoints.py +0 -148
  21. graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/centrality/bridges_cypher_endpoints.py +0 -59
  22. graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/model/model_catalog_cypher_endpoints.py +0 -80
  23. graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/pathfinding/bfs_cypher_endpoints.py +0 -150
  24. {graphdatascience-1.19 → graphdatascience-1.19a1}/LICENSE +0 -0
  25. {graphdatascience-1.19 → graphdatascience-1.19a1}/MANIFEST.in +0 -0
  26. {graphdatascience-1.19 → graphdatascience-1.19a1}/README.md +0 -0
  27. {graphdatascience-1.19 → graphdatascience-1.19a1}/setup.cfg +0 -0
  28. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/__init__.py +0 -0
  29. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/algo/__init__.py +0 -0
  30. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/algo/algo_endpoints.py +0 -0
  31. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/algo/algo_proc_runner.py +0 -0
  32. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/algo/single_mode_algo_endpoints.py +0 -0
  33. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/__init__.py +0 -0
  34. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/arrow_authentication.py +0 -0
  35. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/arrow_base_model.py +0 -0
  36. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/arrow_client_options_util.py +0 -0
  37. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/arrow_endpoint_version.py +0 -0
  38. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/arrow_info.py +0 -0
  39. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/authenticated_flight_client.py +0 -0
  40. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/middleware/__init__.py +0 -0
  41. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/middleware/auth_middleware.py +0 -0
  42. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/middleware/user_agent_middleware.py +0 -0
  43. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v1/__init__.py +0 -0
  44. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v1/data_mapper_utils.py +0 -0
  45. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v1/gds_arrow_client.py +0 -0
  46. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v2/__init__.py +0 -0
  47. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v2/api_types.py +0 -0
  48. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v2/data_mapper_utils.py +0 -0
  49. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v2/gds_arrow_client.py +0 -0
  50. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v2/job_client.py +0 -0
  51. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v2/mutation_client.py +0 -0
  52. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/arrow_client/v2/remote_write_back_client.py +0 -0
  53. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/call_builder.py +0 -0
  54. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/call_parameters.py +0 -0
  55. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/caller_base.py +0 -0
  56. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/endpoints.py +0 -0
  57. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/error/__init__.py +0 -0
  58. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/error/client_only_endpoint.py +0 -0
  59. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/error/cypher_warning_handler.py +0 -0
  60. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/error/endpoint_suggester.py +0 -0
  61. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/error/gds_not_installed.py +0 -0
  62. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/error/illegal_attr_checker.py +0 -0
  63. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/error/unable_to_connect.py +0 -0
  64. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/error/uncallable_namespace.py +0 -0
  65. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/__init__.py +0 -0
  66. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/base_graph_proc_runner.py +0 -0
  67. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_alpha_proc_runner.py +0 -0
  68. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_beta_proc_runner.py +0 -0
  69. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_create_result.py +0 -0
  70. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_cypher_runner.py +0 -0
  71. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_endpoints.py +0 -0
  72. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_entity_ops_runner.py +0 -0
  73. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_export_runner.py +0 -0
  74. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_object.py +0 -0
  75. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_proc_runner.py +0 -0
  76. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_project_runner.py +0 -0
  77. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_remote_proc_runner.py +0 -0
  78. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_remote_project_runner.py +0 -0
  79. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_sample_runner.py +0 -0
  80. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/graph_type_check.py +0 -0
  81. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/nx_loader.py +0 -0
  82. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph/ogb_loader.py +0 -0
  83. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/graph_data_science.py +0 -0
  84. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/ignored_server_endpoints.py +0 -0
  85. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/__init__.py +0 -0
  86. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/graphsage_model.py +0 -0
  87. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/link_prediction_model.py +0 -0
  88. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/model.py +0 -0
  89. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/model_alpha_proc_runner.py +0 -0
  90. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/model_beta_proc_runner.py +0 -0
  91. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/model_endpoints.py +0 -0
  92. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/model_proc_runner.py +0 -0
  93. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/model_resolver.py +0 -0
  94. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/node_classification_model.py +0 -0
  95. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/node_regression_model.py +0 -0
  96. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/pipeline_model.py +0 -0
  97. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/simple_rel_embedding_model.py +0 -0
  98. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/v2/__init__.py +0 -0
  99. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/v2/graphsage_model.py +0 -0
  100. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/v2/model.py +0 -0
  101. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/v2/model_api.py +0 -0
  102. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/model/v2/model_details.py +0 -0
  103. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/__init__.py +0 -0
  104. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/classification_training_pipeline.py +0 -0
  105. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/lp_pipeline_create_runner.py +0 -0
  106. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/lp_training_pipeline.py +0 -0
  107. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/nc_pipeline_create_runner.py +0 -0
  108. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/nc_training_pipeline.py +0 -0
  109. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/nr_pipeline_create_runner.py +0 -0
  110. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/nr_training_pipeline.py +0 -0
  111. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/pipeline_alpha_proc_runner.py +0 -0
  112. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/pipeline_beta_proc_runner.py +0 -0
  113. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/pipeline_endpoints.py +0 -0
  114. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/pipeline_proc_runner.py +0 -0
  115. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/pipeline/training_pipeline.py +0 -0
  116. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/__init__.py +0 -0
  117. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/__init__.py +0 -0
  118. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/base_result.py +0 -0
  119. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/__init__.py +0 -0
  120. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/catalog_endpoints.py +0 -0
  121. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/graph_api.py +0 -0
  122. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/graph_backend.py +0 -0
  123. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/graph_info.py +0 -0
  124. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/graph_sampling_endpoints.py +0 -0
  125. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/node_label_endpoints.py +0 -0
  126. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/node_properties_endpoints.py +0 -0
  127. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/relationships_endpoints.py +0 -0
  128. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/scale_properties_endpoints.py +0 -0
  129. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/catalog/scaler_config.py +0 -0
  130. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/__init__.py +0 -0
  131. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/articlerank_endpoints.py +0 -0
  132. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/articulationpoints_endpoints.py +0 -0
  133. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/betweenness_endpoints.py +0 -0
  134. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/celf_endpoints.py +0 -0
  135. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/closeness_endpoints.py +0 -0
  136. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/closeness_harmonic_endpoints.py +0 -0
  137. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/degree_endpoints.py +0 -0
  138. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/eigenvector_endpoints.py +0 -0
  139. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/centrality/pagerank_endpoints.py +0 -0
  140. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/__init__.py +0 -0
  141. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/clique_counting_endpoints.py +0 -0
  142. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/conductance_endpoints.py +0 -0
  143. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/hdbscan_endpoints.py +0 -0
  144. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/k1coloring_endpoints.py +0 -0
  145. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/kcore_endpoints.py +0 -0
  146. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/kmeans_endpoints.py +0 -0
  147. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/labelpropagation_endpoints.py +0 -0
  148. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/leiden_endpoints.py +0 -0
  149. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/local_clustering_coefficient_endpoints.py +0 -0
  150. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/louvain_endpoints.py +0 -0
  151. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/maxkcut_endpoints.py +0 -0
  152. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/modularity_endpoints.py +0 -0
  153. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/modularity_optimization_endpoints.py +0 -0
  154. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/scc_endpoints.py +0 -0
  155. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/sllpa_endpoints.py +0 -0
  156. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/triangle_count_endpoints.py +0 -0
  157. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/community/wcc_endpoints.py +0 -0
  158. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/config_endpoints.py +0 -0
  159. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/default_values.py +0 -0
  160. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/estimation_result.py +0 -0
  161. {graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/api/model}/__init__.py +0 -0
  162. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/model/graphsage_model.py +0 -0
  163. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/node_embedding/__init__.py +0 -0
  164. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/node_embedding/fastrp_endpoints.py +0 -0
  165. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_endpoints.py +0 -0
  166. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_predict_endpoints.py +0 -0
  167. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_train_endpoints.py +0 -0
  168. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/node_embedding/hashgnn_endpoints.py +0 -0
  169. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/node_embedding/node2vec_endpoints.py +0 -0
  170. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/__init__.py +0 -0
  171. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/all_shortest_path_endpoints.py +0 -0
  172. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/dag_endpoints.py +0 -0
  173. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/dijkstra_endpoints.py +0 -0
  174. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/k_spanning_tree_endpoints.py +0 -0
  175. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/longest_path_endpoints.py +0 -0
  176. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/prize_steiner_tree_endpoints.py +0 -0
  177. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/shortest_path_endpoints.py +0 -0
  178. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_bellman_ford_endpoints.py +0 -0
  179. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_delta_endpoints.py +0 -0
  180. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_dijkstra_endpoints.py +0 -0
  181. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_astar_endpoints.py +0 -0
  182. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_dijkstra_endpoints.py +0 -0
  183. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_yens_endpoints.py +0 -0
  184. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/spanning_tree_endpoints.py +0 -0
  185. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/pathfinding/steiner_tree_endpoints.py +0 -0
  186. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/similarity/__init__.py +0 -0
  187. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/similarity/knn_endpoints.py +0 -0
  188. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/similarity/knn_filtered_endpoints.py +0 -0
  189. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/similarity/knn_results.py +0 -0
  190. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_endpoints.py +0 -0
  191. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_filtered_endpoints.py +0 -0
  192. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_results.py +0 -0
  193. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/api/system_endpoints.py +0 -0
  194. {graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/centrality → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/arrow}/__init__.py +0 -0
  195. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/__init__.py +0 -0
  196. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/catalog_arrow_endpoints.py +0 -0
  197. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/graph_backend_arrow.py +0 -0
  198. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/graph_ops_arrow.py +0 -0
  199. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/graph_sampling_arrow_endpoints.py +0 -0
  200. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/node_label_arrow_endpoints.py +0 -0
  201. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/node_properties_arrow_endpoints.py +0 -0
  202. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/relationship_arrow_endpoints.py +0 -0
  203. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/catalog/scale_properties_arrow_endpoints.py +0 -0
  204. {graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/community → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/arrow/centrality}/__init__.py +0 -0
  205. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/articlerank_arrow_endpoints.py +0 -0
  206. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/articulationpoints_arrow_endpoints.py +0 -0
  207. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/betweenness_arrow_endpoints.py +0 -0
  208. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/celf_arrow_endpoints.py +0 -0
  209. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_arrow_endpoints.py +0 -0
  210. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_harmonic_arrow_endpoints.py +0 -0
  211. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/degree_arrow_endpoints.py +0 -0
  212. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/eigenvector_arrow_endpoints.py +0 -0
  213. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/centrality/pagerank_arrow_endpoints.py +0 -0
  214. {graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/node_embedding → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/arrow/community}/__init__.py +0 -0
  215. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/clique_counting_arrow_endpoints.py +0 -0
  216. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/conductance_arrow_endpoints.py +0 -0
  217. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/hdbscan_arrow_endpoints.py +0 -0
  218. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/k1coloring_arrow_endpoints.py +0 -0
  219. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/kcore_arrow_endpoints.py +0 -0
  220. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/kmeans_arrow_endpoints.py +0 -0
  221. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/labelpropagation_arrow_endpoints.py +0 -0
  222. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/leiden_arrow_endpoints.py +0 -0
  223. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/local_clustering_coefficient_arrow_endpoints.py +0 -0
  224. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/louvain_arrow_endpoints.py +0 -0
  225. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/maxkcut_arrow_endpoints.py +0 -0
  226. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/modularity_arrow_endpoints.py +0 -0
  227. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/modularity_optimization_arrow_endpoints.py +0 -0
  228. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/scc_arrow_endpoints.py +0 -0
  229. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/sllpa_arrow_endpoints.py +0 -0
  230. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/triangle_count_arrow_endpoints.py +0 -0
  231. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/community/wcc_arrow_endpoints.py +0 -0
  232. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/config_arrow_endpoints.py +0 -0
  233. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/error_handler.py +0 -0
  234. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/model_api_arrow.py +0 -0
  235. {graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/pathfinding → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/arrow/node_embedding}/__init__.py +0 -0
  236. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/node_embedding/fastrp_arrow_endpoints.py +0 -0
  237. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_predict_arrow_endpoints.py +0 -0
  238. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_train_arrow_endpoints.py +0 -0
  239. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/node_embedding/hashgnn_arrow_endpoints.py +0 -0
  240. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/node_embedding/node2vec_arrow_endpoints.py +0 -0
  241. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/node_property_endpoints.py +0 -0
  242. {graphdatascience-1.19/src/graphdatascience/procedure_surface/arrow/similarity → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/arrow/pathfinding}/__init__.py +0 -0
  243. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/all_shortest_path_arrow_endpoints.py +0 -0
  244. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/dag_arrow_endpoints.py +0 -0
  245. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/dijkstra_arrow_endpoints.py +0 -0
  246. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/k_spanning_tree_arrow_endpoints.py +0 -0
  247. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/longest_path_arrow_endpoints.py +0 -0
  248. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/prize_steiner_tree_arrow_endpoints.py +0 -0
  249. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/shortest_path_arrow_endpoints.py +0 -0
  250. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_bellman_ford_arrow_endpoints.py +0 -0
  251. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_delta_arrow_endpoints.py +0 -0
  252. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_dijkstra_arrow_endpoints.py +0 -0
  253. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_astar_arrow_endpoints.py +0 -0
  254. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_dijkstra_arrow_endpoints.py +0 -0
  255. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_yens_arrow_endpoints.py +0 -0
  256. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/spanning_tree_arrow_endpoints.py +0 -0
  257. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/pathfinding/steiner_tree_arrow_endpoints.py +0 -0
  258. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/relationship_endpoints_helper.py +0 -0
  259. {graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/catalog → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/arrow/similarity}/__init__.py +0 -0
  260. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/similarity/knn_arrow_endpoints.py +0 -0
  261. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/similarity/knn_filtered_arrow_endpoints.py +0 -0
  262. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_arrow_endpoints.py +0 -0
  263. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_filtered_arrow_endpoints.py +0 -0
  264. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/system_arrow_endpoints.py +0 -0
  265. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/arrow/table_endpoints_helper.py +0 -0
  266. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/__init__.py +0 -0
  267. {graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/centrality → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/cypher/catalog}/__init__.py +0 -0
  268. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/catalog/graph_backend_cypher.py +0 -0
  269. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/catalog/graph_sampling_cypher_endpoints.py +0 -0
  270. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/catalog/node_label_cypher_endpoints.py +0 -0
  271. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/catalog/node_properties_cypher_endpoints.py +0 -0
  272. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/catalog/relationship_cypher_endpoints.py +0 -0
  273. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/catalog/scale_properties_cypher_endpoints.py +0 -0
  274. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/catalog/utils.py +0 -0
  275. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/catalog_cypher_endpoints.py +0 -0
  276. {graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/community → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/cypher/centrality}/__init__.py +0 -0
  277. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/articlerank_cypher_endpoints.py +0 -0
  278. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/articulationpoints_cypher_endpoints.py +0 -0
  279. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/betweenness_cypher_endpoints.py +0 -0
  280. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/celf_cypher_endpoints.py +0 -0
  281. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_cypher_endpoints.py +0 -0
  282. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_harmonic_cypher_endpoints.py +0 -0
  283. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/degree_cypher_endpoints.py +0 -0
  284. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/eigenvector_cypher_endpoints.py +0 -0
  285. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/centrality/pagerank_cypher_endpoints.py +0 -0
  286. {graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/node_embedding → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/cypher/community}/__init__.py +0 -0
  287. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/clique_counting_cypher_endpoints.py +0 -0
  288. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/conductance_cypher_endpoints.py +0 -0
  289. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/hdbscan_cypher_endpoints.py +0 -0
  290. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/k1coloring_cypher_endpoints.py +0 -0
  291. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/kcore_cypher_endpoints.py +0 -0
  292. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/kmeans_cypher_endpoints.py +0 -0
  293. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/labelpropagation_cypher_endpoints.py +0 -0
  294. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/leiden_cypher_endpoints.py +0 -0
  295. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/local_clustering_coefficient_cypher_endpoints.py +0 -0
  296. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/louvain_cypher_endpoints.py +0 -0
  297. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/maxkcut_cypher_endpoints.py +0 -0
  298. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/modularity_cypher_endpoints.py +0 -0
  299. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/modularity_optimization_cypher_endpoints.py +0 -0
  300. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/scc_cypher_endpoints.py +0 -0
  301. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/sllpa_cypher_endpoints.py +0 -0
  302. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/triangle_count_cypher_endpoints.py +0 -0
  303. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/community/wcc_cypher_endpoints.py +0 -0
  304. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/config_cypher_endpoints.py +0 -0
  305. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/estimation_utils.py +0 -0
  306. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/model_api_cypher.py +0 -0
  307. {graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/pathfinding → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/cypher/node_embedding}/__init__.py +0 -0
  308. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/node_embedding/fastrp_cypher_endpoints.py +0 -0
  309. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_predict_cypher_endpoints.py +0 -0
  310. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_train_cypher_endpoints.py +0 -0
  311. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/node_embedding/hashgnn_cypher_endpoints.py +0 -0
  312. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/node_embedding/node2vec_cypher_endpoints.py +0 -0
  313. {graphdatascience-1.19/src/graphdatascience/procedure_surface/cypher/similarity → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/cypher/pathfinding}/__init__.py +0 -0
  314. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/all_shortest_path_cypher_endpoints.py +0 -0
  315. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/dag_cypher_endpoints.py +0 -0
  316. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/dijkstra_cypher_endpoints.py +0 -0
  317. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/k_spanning_tree_cypher_endpoints.py +0 -0
  318. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/longest_path_cypher_endpoints.py +0 -0
  319. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/prize_steiner_tree_cypher_endpoints.py +0 -0
  320. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/shortest_path_cypher_endpoints.py +0 -0
  321. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_bellman_ford_cypher_endpoints.py +0 -0
  322. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_delta_cypher_endpoints.py +0 -0
  323. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_dijkstra_cypher_endpoints.py +0 -0
  324. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_astar_cypher_endpoints.py +0 -0
  325. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_dijkstra_cypher_endpoints.py +0 -0
  326. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_yens_cypher_endpoints.py +0 -0
  327. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/spanning_tree_cypher_endpoints.py +0 -0
  328. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/pathfinding/steiner_tree_cypher_endpoints.py +0 -0
  329. {graphdatascience-1.19/src/graphdatascience/procedure_surface/utils → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/cypher/similarity}/__init__.py +0 -0
  330. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/similarity/knn_cypher_endpoints.py +0 -0
  331. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/similarity/knn_filtered_cypher_endpoints.py +0 -0
  332. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_cypher_endpoints.py +0 -0
  333. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_filtered_cypher_endpoints.py +0 -0
  334. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/cypher/system_cypher_endpoints.py +0 -0
  335. {graphdatascience-1.19/src/graphdatascience/query_runner → graphdatascience-1.19a1/src/graphdatascience/procedure_surface/utils}/__init__.py +0 -0
  336. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/utils/config_converter.py +0 -0
  337. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/procedure_surface/utils/result_utils.py +0 -0
  338. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/py.typed +0 -0
  339. {graphdatascience-1.19/src/graphdatascience/query_runner/progress → graphdatascience-1.19a1/src/graphdatascience/query_runner}/__init__.py +0 -0
  340. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/arrow_authentication/__init__.py +0 -0
  341. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/arrow_graph_constructor.py +0 -0
  342. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/arrow_info/__init__.py +0 -0
  343. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/arrow_query_runner.py +0 -0
  344. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/cypher_graph_constructor.py +0 -0
  345. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/db_environment_resolver.py +0 -0
  346. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/gds_arrow_client.py +0 -0
  347. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/graph_constructor.py +0 -0
  348. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/neo4j_query_runner.py +0 -0
  349. {graphdatascience-1.19/src/graphdatascience/query_runner/protocol → graphdatascience-1.19a1/src/graphdatascience/query_runner/progress}/__init__.py +0 -0
  350. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/progress/progress_bar.py +0 -0
  351. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/progress/progress_provider.py +0 -0
  352. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/progress/query_progress_logger.py +0 -0
  353. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/progress/query_progress_provider.py +0 -0
  354. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/progress/static_progress_provider.py +0 -0
  355. {graphdatascience-1.19/src/graphdatascience/resources → graphdatascience-1.19a1/src/graphdatascience/query_runner/protocol}/__init__.py +0 -0
  356. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/protocol/project_protocols.py +0 -0
  357. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/protocol/status.py +0 -0
  358. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/protocol/write_protocols.py +0 -0
  359. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/query_mode.py +0 -0
  360. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/query_runner.py +0 -0
  361. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/session_query_runner.py +0 -0
  362. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/standalone_session_query_runner.py +0 -0
  363. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/query_runner/termination_flag.py +0 -0
  364. {graphdatascience-1.19/src/graphdatascience/resources/cora → graphdatascience-1.19a1/src/graphdatascience/resources}/__init__.py +0 -0
  365. {graphdatascience-1.19/src/graphdatascience/resources/imdb → graphdatascience-1.19a1/src/graphdatascience/resources/cora}/__init__.py +0 -0
  366. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/cora/cora_nodes.parquet.gzip +0 -0
  367. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/cora/cora_rels.parquet.gzip +0 -0
  368. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/cora/serialize_cora.py +0 -0
  369. {graphdatascience-1.19/src/graphdatascience/resources/karate → graphdatascience-1.19a1/src/graphdatascience/resources/imdb}/__init__.py +0 -0
  370. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/imdb/imdb_acted_in.parquet.gzip +0 -0
  371. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/imdb/imdb_actors.parquet.gzip +0 -0
  372. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/imdb/imdb_directed_in.parquet.gzip +0 -0
  373. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/imdb/imdb_directors.parquet.gzip +0 -0
  374. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/imdb/imdb_movies_with_genre.parquet.gzip +0 -0
  375. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/imdb/imdb_movies_without_genre.parquet.gzip +0 -0
  376. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/imdb/serialize_imdb.py +0 -0
  377. {graphdatascience-1.19/src/graphdatascience/resources/lastfm → graphdatascience-1.19a1/src/graphdatascience/resources/karate}/__init__.py +0 -0
  378. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/karate/karate_club.parquet.gzip +0 -0
  379. {graphdatascience-1.19/src/graphdatascience/retry_utils → graphdatascience-1.19a1/src/graphdatascience/resources/lastfm}/__init__.py +0 -0
  380. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/lastfm/artist_nodes.parquet.gzip +0 -0
  381. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/lastfm/serialize_lastfm.py +0 -0
  382. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/lastfm/user_friend_df_directed.parquet.gzip +0 -0
  383. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/lastfm/user_listen_artist_rels.parquet.gzip +0 -0
  384. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/lastfm/user_nodes.parquet.gzip +0 -0
  385. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/resources/lastfm/user_tag_artist_rels.parquet.gzip +0 -0
  386. {graphdatascience-1.19/src/graphdatascience/semantic_version → graphdatascience-1.19a1/src/graphdatascience/retry_utils}/__init__.py +0 -0
  387. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/retry_utils/neo4j_retry_helper.py +0 -0
  388. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/retry_utils/retry_config.py +0 -0
  389. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/retry_utils/retry_utils.py +0 -0
  390. {graphdatascience-1.19/src/graphdatascience/server_version → graphdatascience-1.19a1/src/graphdatascience/semantic_version}/__init__.py +0 -0
  391. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/semantic_version/semantic_version.py +0 -0
  392. {graphdatascience-1.19/src/graphdatascience/session/dbms → graphdatascience-1.19a1/src/graphdatascience/server_version}/__init__.py +0 -0
  393. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/server_version/compatible_with.py +0 -0
  394. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/server_version/server_version.py +0 -0
  395. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/__init__.py +0 -0
  396. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/algorithm_category.py +0 -0
  397. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/aura_api.py +0 -0
  398. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/aura_api_responses.py +0 -0
  399. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/aura_api_token_authentication.py +0 -0
  400. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/aura_graph_data_science.py +0 -0
  401. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/aurads_sessions.py +0 -0
  402. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/cloud_location.py +0 -0
  403. {graphdatascience-1.19/src/graphdatascience/system → graphdatascience-1.19a1/src/graphdatascience/session/dbms}/__init__.py +0 -0
  404. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/dbms/protocol_resolver.py +0 -0
  405. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/dbms/protocol_version.py +0 -0
  406. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/dbms_connection_info.py +0 -0
  407. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/dedicated_sessions.py +0 -0
  408. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/gds_sessions.py +0 -0
  409. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/region_suggester.py +0 -0
  410. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/session_info.py +0 -0
  411. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/session_lifecycle_manager.py +0 -0
  412. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/session/session_sizes.py +0 -0
  413. {graphdatascience-1.19/src/graphdatascience/topological_lp → graphdatascience-1.19a1/src/graphdatascience/system}/__init__.py +0 -0
  414. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/system/config_endpoints.py +0 -0
  415. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/system/system_endpoints.py +0 -0
  416. {graphdatascience-1.19/src/graphdatascience/utils → graphdatascience-1.19a1/src/graphdatascience/topological_lp}/__init__.py +0 -0
  417. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/topological_lp/topological_lp_alpha_endpoints.py +0 -0
  418. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/topological_lp/topological_lp_alpha_runner.py +0 -0
  419. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/topological_lp/topological_lp_runner.py +0 -0
  420. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/utils/direct_util_endpoints.py +0 -0
  421. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/utils/util_node_property_func_runner.py +0 -0
  422. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/utils/util_proc_runner.py +0 -0
  423. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience/utils/util_remote_proc_runner.py +0 -0
  424. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience.egg-info/dependency_links.txt +0 -0
  425. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience.egg-info/not-zip-safe +0 -0
  426. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience.egg-info/requires.txt +0 -0
  427. {graphdatascience-1.19 → graphdatascience-1.19a1}/src/graphdatascience.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphdatascience
3
- Version: 1.19
3
+ Version: 1.19a1
4
4
  Summary: A Python client for the Neo4j Graph Data Science (GDS) library
5
5
  Author-email: Neo4j <team-gds@neo4j.org>
6
6
  License-Expression: Apache-2.0
@@ -62,40 +62,41 @@ dev = [
62
62
  { include-group = "docs-ci" },
63
63
  ]
64
64
 
65
+
65
66
  dev-base = [
66
- "ruff == 0.14.11",
67
- "mypy == 1.19.1",
67
+ "ruff == 0.11.7",
68
+ "mypy == 1.13.0",
69
+ "nbconvert == 7.16.4",
68
70
  "pandas-stubs == 2.2.3.241009",
69
- "tox == 4.34.1",
71
+ "tox == 4.30.2",
70
72
  "types-setuptools == 75.8.0.20250110",
71
73
  "enum-tools[sphinx] == 0.12.0",
72
74
  "autodoc_pydantic",
73
75
  "types-requests",
74
76
  "types-tqdm",
75
77
  "types-python-dateutil",
76
- "python-dotenv==1.2.1",
78
+ "python-dotenv==1.1.0",
77
79
  "types-colorama",
78
80
  ]
79
81
  test = [
80
- "pytest == 9.0.2",
81
- "requests_mock == 1.12.1",
82
+ "pytest == 8.3.3",
83
+ "requests_mock == 1.11.0",
82
84
  "pytest_mock == 3.15.1",
83
- "testcontainers == 4.14.0",
85
+ "testcontainers >= 4.0, < 4.13.0",
84
86
  "python-dateutil >= 2.9",
85
87
  ]
86
-
87
88
  docs-ci = [
88
89
  "sphinx == 7.3.7",
89
90
  "enum-tools[sphinx] == 0.12.0",
90
91
  "autodoc_pydantic",
91
92
  ]
92
93
  notebook-base = [
93
- "nbconvert==7.16.6",
94
+ "nbconvert==7.16.4",
94
95
  "nbformat==5.10.4",
95
- "nbclient==0.10.4",
96
- "ipykernel==7.1.0",
96
+ "nbclient==0.10.2",
97
+ "ipykernel==6.29.5",
97
98
  ]
98
- notebook-aura-ci = [{ include-group = "notebook-base" }, "python-dotenv==1.2.1"]
99
+ notebook-aura-ci = [{ include-group = "notebook-base" }, "python-dotenv==1.1.0"]
99
100
  notebook-ci = [
100
101
  { include-group = "notebook-base" },
101
102
  "scipy == 1.14.0",
@@ -3,7 +3,6 @@ from graphdatascience.procedure_surface.api.catalog.scale_properties_endpoints i
3
3
  from graphdatascience.procedure_surface.api.centrality.articlerank_endpoints import ArticleRankEndpoints
4
4
  from graphdatascience.procedure_surface.api.centrality.articulationpoints_endpoints import ArticulationPointsEndpoints
5
5
  from graphdatascience.procedure_surface.api.centrality.betweenness_endpoints import BetweennessEndpoints
6
- from graphdatascience.procedure_surface.api.centrality.bridges_endpoints import BridgesEndpoints
7
6
  from graphdatascience.procedure_surface.api.centrality.celf_endpoints import CelfEndpoints
8
7
  from graphdatascience.procedure_surface.api.centrality.closeness_endpoints import ClosenessEndpoints
9
8
  from graphdatascience.procedure_surface.api.centrality.closeness_harmonic_endpoints import ClosenessHarmonicEndpoints
@@ -32,13 +31,11 @@ from graphdatascience.procedure_surface.api.community.sllpa_endpoints import Sll
32
31
  from graphdatascience.procedure_surface.api.community.triangle_count_endpoints import TriangleCountEndpoints
33
32
  from graphdatascience.procedure_surface.api.community.wcc_endpoints import WccEndpoints
34
33
  from graphdatascience.procedure_surface.api.config_endpoints import ConfigEndpoints
35
- from graphdatascience.procedure_surface.api.model.model_catalog_endpoints import ModelCatalogEndpoints
36
34
  from graphdatascience.procedure_surface.api.node_embedding.fastrp_endpoints import FastRPEndpoints
37
35
  from graphdatascience.procedure_surface.api.node_embedding.graphsage_endpoints import GraphSageEndpoints
38
36
  from graphdatascience.procedure_surface.api.node_embedding.hashgnn_endpoints import HashGNNEndpoints
39
37
  from graphdatascience.procedure_surface.api.node_embedding.node2vec_endpoints import Node2VecEndpoints
40
38
  from graphdatascience.procedure_surface.api.pathfinding.all_shortest_path_endpoints import AllShortestPathEndpoints
41
- from graphdatascience.procedure_surface.api.pathfinding.bfs_endpoints import BFSEndpoints
42
39
  from graphdatascience.procedure_surface.api.pathfinding.dag_endpoints import DagEndpoints
43
40
  from graphdatascience.procedure_surface.api.pathfinding.k_spanning_tree_endpoints import KSpanningTreeEndpoints
44
41
  from graphdatascience.procedure_surface.api.pathfinding.max_flow_endpoints import MaxFlowEndpoints
@@ -61,7 +58,6 @@ from graphdatascience.procedure_surface.cypher.centrality.articulationpoints_cyp
61
58
  ArticulationPointsCypherEndpoints,
62
59
  )
63
60
  from graphdatascience.procedure_surface.cypher.centrality.betweenness_cypher_endpoints import BetweennessCypherEndpoints
64
- from graphdatascience.procedure_surface.cypher.centrality.bridges_cypher_endpoints import BridgesCypherEndpoints
65
61
  from graphdatascience.procedure_surface.cypher.centrality.celf_cypher_endpoints import CelfCypherEndpoints
66
62
  from graphdatascience.procedure_surface.cypher.centrality.closeness_cypher_endpoints import ClosenessCypherEndpoints
67
63
  from graphdatascience.procedure_surface.cypher.centrality.closeness_harmonic_cypher_endpoints import (
@@ -98,9 +94,6 @@ from graphdatascience.procedure_surface.cypher.community.triangle_count_cypher_e
98
94
  )
99
95
  from graphdatascience.procedure_surface.cypher.community.wcc_cypher_endpoints import WccCypherEndpoints
100
96
  from graphdatascience.procedure_surface.cypher.config_cypher_endpoints import ConfigCypherEndpoints
101
- from graphdatascience.procedure_surface.cypher.model.model_catalog_cypher_endpoints import (
102
- ModelCatalogCypherEndpoints,
103
- )
104
97
  from graphdatascience.procedure_surface.cypher.node_embedding.fastrp_cypher_endpoints import FastRPCypherEndpoints
105
98
  from graphdatascience.procedure_surface.cypher.node_embedding.graphsage_predict_cypher_endpoints import (
106
99
  GraphSagePredictCypherEndpoints,
@@ -113,7 +106,6 @@ from graphdatascience.procedure_surface.cypher.node_embedding.node2vec_cypher_en
113
106
  from graphdatascience.procedure_surface.cypher.pathfinding.all_shortest_path_cypher_endpoints import (
114
107
  AllShortestPathCypherEndpoints,
115
108
  )
116
- from graphdatascience.procedure_surface.cypher.pathfinding.bfs_cypher_endpoints import BFSCypherEndpoints
117
109
  from graphdatascience.procedure_surface.cypher.pathfinding.dag_cypher_endpoints import DagCypherEndpoints
118
110
  from graphdatascience.procedure_surface.cypher.pathfinding.k_spanning_tree_cypher_endpoints import (
119
111
  KSpanningTreeCypherEndpoints,
@@ -157,13 +149,6 @@ class PluginV2Endpoints:
157
149
  """
158
150
  return CatalogCypherEndpoints(self._db_client, self._arrow_client)
159
151
 
160
- @property
161
- def model(self) -> ModelCatalogEndpoints:
162
- """
163
- Return model-related endpoints for model management.
164
- """
165
- return ModelCatalogCypherEndpoints(self._db_client)
166
-
167
152
  @property
168
153
  def config(self) -> ConfigEndpoints:
169
154
  """
@@ -194,13 +179,6 @@ class PluginV2Endpoints:
194
179
  """
195
180
  return ArticleRankCypherEndpoints(self._db_client)
196
181
 
197
- @property
198
- def bfs(self) -> BFSEndpoints:
199
- """
200
- Return endpoints for the Breadth First Search (BFS) algorithm.
201
- """
202
- return BFSCypherEndpoints(self._db_client)
203
-
204
182
  @property
205
183
  def articulation_points(self) -> ArticulationPointsEndpoints:
206
184
  """
@@ -215,13 +193,6 @@ class PluginV2Endpoints:
215
193
  """
216
194
  return BetweennessCypherEndpoints(self._db_client)
217
195
 
218
- @property
219
- def bridges(self) -> BridgesEndpoints:
220
- """
221
- Return endpoints for the bridges algorithm.
222
- """
223
- return BridgesCypherEndpoints(self._db_client)
224
-
225
196
  @property
226
197
  def bellman_ford(self) -> SingleSourceBellmanFordEndpoints:
227
198
  """
@@ -20,7 +20,6 @@ class MaxFlowEndpoints(ABC):
20
20
  mutate_relationship_type: str,
21
21
  *,
22
22
  capacity_property: str | None = None,
23
- node_capacity_property: str | None = None,
24
23
  concurrency: int | None = None,
25
24
  job_id: str | None = None,
26
25
  log_progress: bool = True,
@@ -44,8 +43,6 @@ class MaxFlowEndpoints(ABC):
44
43
  Name of the relationship type to store the results in.
45
44
  capacity_property
46
45
  Name of the relationship property containing capacities.
47
- node_capacity_property
48
- Name of the node property containing capacities.
49
46
  concurrency
50
47
  Number of concurrent threads to use.
51
48
  job_id
@@ -78,7 +75,6 @@ class MaxFlowEndpoints(ABC):
78
75
  G: GraphV2,
79
76
  *,
80
77
  capacity_property: str | None = None,
81
- node_capacity_property: str | None = None,
82
78
  concurrency: int | None = None,
83
79
  job_id: str | None = None,
84
80
  log_progress: bool = True,
@@ -98,8 +94,6 @@ class MaxFlowEndpoints(ABC):
98
94
  Graph object to use
99
95
  capacity_property
100
96
  Name of the relationship property containing capacities.
101
- node_capacity_property
102
- Name of the node property containing capacities.
103
97
  concurrency
104
98
  Number of concurrent threads to use.
105
99
  job_id
@@ -132,7 +126,6 @@ class MaxFlowEndpoints(ABC):
132
126
  G: GraphV2,
133
127
  *,
134
128
  capacity_property: str | None = None,
135
- node_capacity_property: str | None = None,
136
129
  concurrency: int | None = None,
137
130
  job_id: str | None = None,
138
131
  log_progress: bool = True,
@@ -152,8 +145,6 @@ class MaxFlowEndpoints(ABC):
152
145
  Graph object to use
153
146
  capacity_property
154
147
  Name of the relationship property containing capacities.
155
- node_capacity_property
156
- Name of the node property containing capacities.
157
148
  concurrency
158
149
  Number of concurrent threads to use.
159
150
  job_id
@@ -188,7 +179,6 @@ class MaxFlowEndpoints(ABC):
188
179
  write_relationship_type: str,
189
180
  *,
190
181
  capacity_property: str | None = None,
191
- node_capacity_property: str | None = None,
192
182
  concurrency: int | None = None,
193
183
  job_id: str | None = None,
194
184
  log_progress: bool = True,
@@ -213,8 +203,6 @@ class MaxFlowEndpoints(ABC):
213
203
  Name of the relationship type to store the results in.
214
204
  capacity_property
215
205
  Name of the relationship property containing capacities.
216
- node_capacity_property
217
- Name of the node property containing capacities.
218
206
  concurrency
219
207
  Number of concurrent threads to use.
220
208
  job_id
@@ -249,7 +237,6 @@ class MaxFlowEndpoints(ABC):
249
237
  G: GraphV2 | dict[str, Any],
250
238
  *,
251
239
  capacity_property: str | None = None,
252
- node_capacity_property: str | None = None,
253
240
  concurrency: int | None = None,
254
241
  node_labels: list[str] = ALL_LABELS,
255
242
  relationship_types: list[str] = ALL_TYPES,
@@ -265,8 +252,6 @@ class MaxFlowEndpoints(ABC):
265
252
  Graph object to use or a dictionary representing the graph dimensions.
266
253
  capacity_property
267
254
  Name of the relationship property containing capacities.
268
- node_capacity_property
269
- Name of the node property containing capacities.
270
255
  concurrency
271
256
  Number of concurrent threads to use.
272
257
  node_labels
@@ -30,8 +30,8 @@ class EndpointsHelperBase:
30
30
 
31
31
  job_id = JobClient.run_job_and_wait(self._arrow_client, endpoint, config, show_progress)
32
32
  result = JobClient.get_summary(self._arrow_client, job_id)
33
- if nested_config := result.get("configuration", None):
34
- self._drop_write_internals(nested_config)
33
+ if config := result.get("configuration", None):
34
+ self._drop_write_internals(config)
35
35
  return result
36
36
 
37
37
  def _run_job_and_mutate(
@@ -64,11 +64,11 @@ class EndpointsHelperBase:
64
64
  if mutate_relationship_type:
65
65
  computation_result["relationshipsWritten"] = mutate_result.relationships_written
66
66
 
67
- if (nested_config := computation_result.get("configuration", None)) is not None:
68
- nested_config["mutateProperty"] = mutate_property
67
+ if (config := computation_result.get("configuration", None)) is not None:
68
+ config["mutateProperty"] = mutate_property
69
69
  if mutate_relationship_type is not None:
70
- nested_config["mutateRelationshipType"] = mutate_relationship_type
71
- self._drop_write_internals(nested_config)
70
+ config["mutateRelationshipType"] = mutate_relationship_type
71
+ self._drop_write_internals(config)
72
72
 
73
73
  return computation_result
74
74
 
@@ -37,7 +37,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
37
37
  mutate_relationship_type: str,
38
38
  *,
39
39
  capacity_property: str | None = None,
40
- node_capacity_property: str | None = None,
41
40
  concurrency: int | None = None,
42
41
  job_id: str | None = None,
43
42
  log_progress: bool = True,
@@ -51,7 +50,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
51
50
  config = self._relationship_endpoints.create_base_config(
52
51
  G,
53
52
  capacityProperty=capacity_property,
54
- nodeCapacityProperty=node_capacity_property,
55
53
  concurrency=concurrency,
56
54
  jobId=job_id,
57
55
  logProgress=log_progress,
@@ -77,7 +75,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
77
75
  G: GraphV2,
78
76
  *,
79
77
  capacity_property: str | None = None,
80
- node_capacity_property: str | None = None,
81
78
  concurrency: int | None = None,
82
79
  job_id: str | None = None,
83
80
  log_progress: bool = True,
@@ -91,7 +88,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
91
88
  config = self._relationship_endpoints.create_base_config(
92
89
  G,
93
90
  capacityProperty=capacity_property,
94
- nodeCapacityProperty=node_capacity_property,
95
91
  concurrency=concurrency,
96
92
  jobId=job_id,
97
93
  logProgress=log_progress,
@@ -112,7 +108,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
112
108
  G: GraphV2,
113
109
  *,
114
110
  capacity_property: str | None = None,
115
- node_capacity_property: str | None = None,
116
111
  concurrency: int | None = None,
117
112
  job_id: str | None = None,
118
113
  log_progress: bool = True,
@@ -126,7 +121,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
126
121
  config = self._relationship_endpoints.create_base_config(
127
122
  G,
128
123
  capacityProperty=capacity_property,
129
- nodeCapacityProperty=node_capacity_property,
130
124
  concurrency=concurrency,
131
125
  jobId=job_id,
132
126
  logProgress=log_progress,
@@ -149,7 +143,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
149
143
  write_relationship_type: str,
150
144
  *,
151
145
  capacity_property: str | None = None,
152
- node_capacity_property: str | None = None,
153
146
  concurrency: int | None = None,
154
147
  job_id: str | None = None,
155
148
  log_progress: bool = True,
@@ -164,7 +157,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
164
157
  config = self._relationship_endpoints.create_base_config(
165
158
  G,
166
159
  capacityProperty=capacity_property,
167
- nodeCapacityProperty=node_capacity_property,
168
160
  concurrency=concurrency,
169
161
  jobId=job_id,
170
162
  logProgress=log_progress,
@@ -193,7 +185,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
193
185
  G: GraphV2 | dict[str, Any],
194
186
  *,
195
187
  capacity_property: str | None = None,
196
- node_capacity_property: str | None = None,
197
188
  concurrency: int | None = None,
198
189
  node_labels: list[str] = ALL_LABELS,
199
190
  relationship_types: list[str] = ALL_TYPES,
@@ -202,7 +193,6 @@ class MaxFlowArrowEndpoints(MaxFlowEndpoints):
202
193
  ) -> EstimationResult:
203
194
  config = self._relationship_endpoints.create_estimate_config(
204
195
  capacityProperty=capacity_property,
205
- nodeCapacityProperty=node_capacity_property,
206
196
  concurrency=concurrency,
207
197
  nodeLabels=node_labels,
208
198
  relationshipTypes=relationship_types,
@@ -36,20 +36,6 @@ def map_all_shortest_path_stream_result(result: DataFrame) -> None:
36
36
  result.drop(columns=["relationshipType"], inplace=True)
37
37
 
38
38
 
39
- def aggregate_traversal_rels(result: DataFrame, source_node: int) -> DataFrame:
40
- result.drop(columns=["sourceNodeId", "relationshipType"], inplace=True)
41
-
42
- # Aggregate targetNodes + index column into a list
43
- node_ids = result.sort_values("index")["targetNodeId"].values
44
-
45
- return DataFrame(
46
- data={
47
- "sourceNode": [source_node],
48
- "nodeIds": [node_ids], # Wrap the list in a list to keep it as a single value
49
- }
50
- )
51
-
52
-
53
39
  def map_steiner_tree_stream_result(result: DataFrame) -> None:
54
40
  result.rename(
55
41
  columns={
@@ -28,7 +28,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
28
28
  mutate_relationship_type: str,
29
29
  *,
30
30
  capacity_property: str | None = None,
31
- node_capacity_property: str | None = None,
32
31
  concurrency: int | None = None,
33
32
  job_id: str | None = None,
34
33
  log_progress: bool = True,
@@ -43,7 +42,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
43
42
  mutateProperty=mutate_property,
44
43
  mutateRelationshipType=mutate_relationship_type,
45
44
  capacityProperty=capacity_property,
46
- nodeCapacityProperty=node_capacity_property,
47
45
  concurrency=concurrency,
48
46
  jobId=job_id,
49
47
  logProgress=log_progress,
@@ -69,7 +67,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
69
67
  G: GraphV2,
70
68
  *,
71
69
  capacity_property: str | None = None,
72
- node_capacity_property: str | None = None,
73
70
  concurrency: int | None = None,
74
71
  job_id: str | None = None,
75
72
  log_progress: bool = True,
@@ -82,7 +79,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
82
79
  ) -> MaxFlowStatsResult:
83
80
  config = ConfigConverter.convert_to_gds_config(
84
81
  capacityProperty=capacity_property,
85
- nodeCapacityProperty=node_capacity_property,
86
82
  concurrency=concurrency,
87
83
  jobId=job_id,
88
84
  logProgress=log_progress,
@@ -113,7 +109,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
113
109
  G: GraphV2,
114
110
  *,
115
111
  capacity_property: str | None = None,
116
- node_capacity_property: str | None = None,
117
112
  concurrency: int | None = None,
118
113
  job_id: str | None = None,
119
114
  log_progress: bool = True,
@@ -126,7 +121,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
126
121
  ) -> DataFrame:
127
122
  config = ConfigConverter.convert_to_gds_config(
128
123
  capacityProperty=capacity_property,
129
- nodeCapacityProperty=node_capacity_property,
130
124
  concurrency=concurrency,
131
125
  jobId=job_id,
132
126
  logProgress=log_progress,
@@ -150,7 +144,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
150
144
  write_relationship_type: str,
151
145
  *,
152
146
  capacity_property: str | None = None,
153
- node_capacity_property: str | None = None,
154
147
  concurrency: int | None = None,
155
148
  job_id: str | None = None,
156
149
  log_progress: bool = True,
@@ -166,7 +159,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
166
159
  writeProperty=write_property,
167
160
  writeRelationshipType=write_relationship_type,
168
161
  capacityProperty=capacity_property,
169
- nodeCapacityProperty=node_capacity_property,
170
162
  concurrency=concurrency,
171
163
  jobId=job_id,
172
164
  logProgress=log_progress,
@@ -193,7 +185,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
193
185
  G: GraphV2 | dict[str, Any],
194
186
  *,
195
187
  capacity_property: str | None = None,
196
- node_capacity_property: str | None = None,
197
188
  concurrency: int | None = None,
198
189
  node_labels: list[str] = ALL_LABELS,
199
190
  relationship_types: list[str] = ALL_TYPES,
@@ -204,7 +195,6 @@ class MaxFlowCypherEndpoints(MaxFlowEndpoints):
204
195
  relationshipTypes=relationship_types,
205
196
  nodeLabels=node_labels,
206
197
  capacityProperty=capacity_property,
207
- nodeCapacityProperty=node_capacity_property,
208
198
  concurrency=concurrency,
209
199
  sourceNodes=source_nodes or [],
210
200
  targetNodes=target_nodes or [],
@@ -4,7 +4,6 @@ from graphdatascience.procedure_surface.api.catalog.scale_properties_endpoints i
4
4
  from graphdatascience.procedure_surface.api.centrality.articlerank_endpoints import ArticleRankEndpoints
5
5
  from graphdatascience.procedure_surface.api.centrality.articulationpoints_endpoints import ArticulationPointsEndpoints
6
6
  from graphdatascience.procedure_surface.api.centrality.betweenness_endpoints import BetweennessEndpoints
7
- from graphdatascience.procedure_surface.api.centrality.bridges_endpoints import BridgesEndpoints
8
7
  from graphdatascience.procedure_surface.api.centrality.celf_endpoints import CelfEndpoints
9
8
  from graphdatascience.procedure_surface.api.centrality.closeness_endpoints import ClosenessEndpoints
10
9
  from graphdatascience.procedure_surface.api.centrality.closeness_harmonic_endpoints import ClosenessHarmonicEndpoints
@@ -32,13 +31,11 @@ from graphdatascience.procedure_surface.api.community.scc_endpoints import SccEn
32
31
  from graphdatascience.procedure_surface.api.community.sllpa_endpoints import SllpaEndpoints
33
32
  from graphdatascience.procedure_surface.api.community.triangle_count_endpoints import TriangleCountEndpoints
34
33
  from graphdatascience.procedure_surface.api.community.wcc_endpoints import WccEndpoints
35
- from graphdatascience.procedure_surface.api.model.model_catalog_endpoints import ModelCatalogEndpoints
36
34
  from graphdatascience.procedure_surface.api.node_embedding.fastrp_endpoints import FastRPEndpoints
37
35
  from graphdatascience.procedure_surface.api.node_embedding.graphsage_endpoints import GraphSageEndpoints
38
36
  from graphdatascience.procedure_surface.api.node_embedding.hashgnn_endpoints import HashGNNEndpoints
39
37
  from graphdatascience.procedure_surface.api.node_embedding.node2vec_endpoints import Node2VecEndpoints
40
38
  from graphdatascience.procedure_surface.api.pathfinding.all_shortest_path_endpoints import AllShortestPathEndpoints
41
- from graphdatascience.procedure_surface.api.pathfinding.bfs_endpoints import BFSEndpoints
42
39
  from graphdatascience.procedure_surface.api.pathfinding.dag_endpoints import DagEndpoints
43
40
  from graphdatascience.procedure_surface.api.pathfinding.k_spanning_tree_endpoints import KSpanningTreeEndpoints
44
41
  from graphdatascience.procedure_surface.api.pathfinding.max_flow_endpoints import MaxFlowEndpoints
@@ -60,7 +57,6 @@ from graphdatascience.procedure_surface.arrow.centrality.articulationpoints_arro
60
57
  ArticulationPointsArrowEndpoints,
61
58
  )
62
59
  from graphdatascience.procedure_surface.arrow.centrality.betweenness_arrow_endpoints import BetweennessArrowEndpoints
63
- from graphdatascience.procedure_surface.arrow.centrality.bridges_arrow_endpoints import BridgesArrowEndpoints
64
60
  from graphdatascience.procedure_surface.arrow.centrality.celf_arrow_endpoints import CelfArrowEndpoints
65
61
  from graphdatascience.procedure_surface.arrow.centrality.closeness_arrow_endpoints import ClosenessArrowEndpoints
66
62
  from graphdatascience.procedure_surface.arrow.centrality.closeness_harmonic_arrow_endpoints import (
@@ -97,9 +93,6 @@ from graphdatascience.procedure_surface.arrow.community.triangle_count_arrow_end
97
93
  )
98
94
  from graphdatascience.procedure_surface.arrow.community.wcc_arrow_endpoints import WccArrowEndpoints
99
95
  from graphdatascience.procedure_surface.arrow.config_arrow_endpoints import ConfigArrowEndpoints
100
- from graphdatascience.procedure_surface.arrow.model.model_catalog_arrow_endpoints import (
101
- ModelCatalogArrowEndpoints,
102
- )
103
96
  from graphdatascience.procedure_surface.arrow.node_embedding.fastrp_arrow_endpoints import FastRPArrowEndpoints
104
97
  from graphdatascience.procedure_surface.arrow.node_embedding.graphsage_predict_arrow_endpoints import (
105
98
  GraphSagePredictArrowEndpoints,
@@ -112,7 +105,6 @@ from graphdatascience.procedure_surface.arrow.node_embedding.node2vec_arrow_endp
112
105
  from graphdatascience.procedure_surface.arrow.pathfinding.all_shortest_path_arrow_endpoints import (
113
106
  AllShortestPathArrowEndpoints,
114
107
  )
115
- from graphdatascience.procedure_surface.arrow.pathfinding.bfs_arrow_endpoints import BFSArrowEndpoints
116
108
  from graphdatascience.procedure_surface.arrow.pathfinding.dag_arrow_endpoints import DagArrowEndpoints
117
109
  from graphdatascience.procedure_surface.arrow.pathfinding.k_spanning_tree_arrow_endpoints import (
118
110
  KSpanningTreeArrowEndpoints,
@@ -179,13 +171,6 @@ class SessionV2Endpoints:
179
171
  """
180
172
  return CatalogArrowEndpoints(self._arrow_client, self._db_client, show_progress=self._show_progress)
181
173
 
182
- @property
183
- def model(self) -> ModelCatalogEndpoints:
184
- """
185
- Return model-related endpoints for model management.
186
- """
187
- return ModelCatalogArrowEndpoints(self._arrow_client)
188
-
189
174
  @property
190
175
  def config(self) -> ConfigArrowEndpoints:
191
176
  """
@@ -218,13 +203,6 @@ class SessionV2Endpoints:
218
203
  """
219
204
  return ArticleRankArrowEndpoints(self._arrow_client, self._write_back_client, show_progress=self._show_progress)
220
205
 
221
- @property
222
- def bfs(self) -> BFSEndpoints:
223
- """
224
- Return endpoints for the Breadth First Search (BFS) algorithm.
225
- """
226
- return BFSArrowEndpoints(self._arrow_client, self._write_back_client, show_progress=self._show_progress)
227
-
228
206
  @property
229
207
  def articulation_points(self) -> ArticulationPointsEndpoints:
230
208
  """
@@ -241,13 +219,6 @@ class SessionV2Endpoints:
241
219
  """
242
220
  return BetweennessArrowEndpoints(self._arrow_client, self._write_back_client, show_progress=self._show_progress)
243
221
 
244
- @property
245
- def bridges(self) -> BridgesEndpoints:
246
- """
247
- Return endpoints for the bridges algorithm.
248
- """
249
- return BridgesArrowEndpoints(self._arrow_client, self._write_back_client, show_progress=self._show_progress)
250
-
251
222
  @property
252
223
  def bellman_ford(self) -> SingleSourceBellmanFordEndpoints:
253
224
  """
@@ -1,2 +1,2 @@
1
- __version__ = "1.19"
1
+ __version__ = "1.19a1"
2
2
  __min_server_version__ = "2.6.0" # matches installation.adoc
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphdatascience
3
- Version: 1.19
3
+ Version: 1.19a1
4
4
  Summary: A Python client for the Neo4j Graph Data Science (GDS) library
5
5
  Author-email: Neo4j <team-gds@neo4j.org>
6
6
  License-Expression: Apache-2.0
@@ -121,7 +121,6 @@ src/graphdatascience/procedure_surface/api/centrality/__init__.py
121
121
  src/graphdatascience/procedure_surface/api/centrality/articlerank_endpoints.py
122
122
  src/graphdatascience/procedure_surface/api/centrality/articulationpoints_endpoints.py
123
123
  src/graphdatascience/procedure_surface/api/centrality/betweenness_endpoints.py
124
- src/graphdatascience/procedure_surface/api/centrality/bridges_endpoints.py
125
124
  src/graphdatascience/procedure_surface/api/centrality/celf_endpoints.py
126
125
  src/graphdatascience/procedure_surface/api/centrality/closeness_endpoints.py
127
126
  src/graphdatascience/procedure_surface/api/centrality/closeness_harmonic_endpoints.py
@@ -148,7 +147,6 @@ src/graphdatascience/procedure_surface/api/community/triangle_count_endpoints.py
148
147
  src/graphdatascience/procedure_surface/api/community/wcc_endpoints.py
149
148
  src/graphdatascience/procedure_surface/api/model/__init__.py
150
149
  src/graphdatascience/procedure_surface/api/model/graphsage_model.py
151
- src/graphdatascience/procedure_surface/api/model/model_catalog_endpoints.py
152
150
  src/graphdatascience/procedure_surface/api/node_embedding/__init__.py
153
151
  src/graphdatascience/procedure_surface/api/node_embedding/fastrp_endpoints.py
154
152
  src/graphdatascience/procedure_surface/api/node_embedding/graphsage_endpoints.py
@@ -158,7 +156,6 @@ src/graphdatascience/procedure_surface/api/node_embedding/hashgnn_endpoints.py
158
156
  src/graphdatascience/procedure_surface/api/node_embedding/node2vec_endpoints.py
159
157
  src/graphdatascience/procedure_surface/api/pathfinding/__init__.py
160
158
  src/graphdatascience/procedure_surface/api/pathfinding/all_shortest_path_endpoints.py
161
- src/graphdatascience/procedure_surface/api/pathfinding/bfs_endpoints.py
162
159
  src/graphdatascience/procedure_surface/api/pathfinding/dag_endpoints.py
163
160
  src/graphdatascience/procedure_surface/api/pathfinding/dijkstra_endpoints.py
164
161
  src/graphdatascience/procedure_surface/api/pathfinding/k_spanning_tree_endpoints.py
@@ -204,7 +201,6 @@ src/graphdatascience/procedure_surface/arrow/centrality/__init__.py
204
201
  src/graphdatascience/procedure_surface/arrow/centrality/articlerank_arrow_endpoints.py
205
202
  src/graphdatascience/procedure_surface/arrow/centrality/articulationpoints_arrow_endpoints.py
206
203
  src/graphdatascience/procedure_surface/arrow/centrality/betweenness_arrow_endpoints.py
207
- src/graphdatascience/procedure_surface/arrow/centrality/bridges_arrow_endpoints.py
208
204
  src/graphdatascience/procedure_surface/arrow/centrality/celf_arrow_endpoints.py
209
205
  src/graphdatascience/procedure_surface/arrow/centrality/closeness_arrow_endpoints.py
210
206
  src/graphdatascience/procedure_surface/arrow/centrality/closeness_harmonic_arrow_endpoints.py
@@ -229,7 +225,6 @@ src/graphdatascience/procedure_surface/arrow/community/scc_arrow_endpoints.py
229
225
  src/graphdatascience/procedure_surface/arrow/community/sllpa_arrow_endpoints.py
230
226
  src/graphdatascience/procedure_surface/arrow/community/triangle_count_arrow_endpoints.py
231
227
  src/graphdatascience/procedure_surface/arrow/community/wcc_arrow_endpoints.py
232
- src/graphdatascience/procedure_surface/arrow/model/model_catalog_arrow_endpoints.py
233
228
  src/graphdatascience/procedure_surface/arrow/node_embedding/__init__.py
234
229
  src/graphdatascience/procedure_surface/arrow/node_embedding/fastrp_arrow_endpoints.py
235
230
  src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_predict_arrow_endpoints.py
@@ -238,7 +233,6 @@ src/graphdatascience/procedure_surface/arrow/node_embedding/hashgnn_arrow_endpoi
238
233
  src/graphdatascience/procedure_surface/arrow/node_embedding/node2vec_arrow_endpoints.py
239
234
  src/graphdatascience/procedure_surface/arrow/pathfinding/__init__.py
240
235
  src/graphdatascience/procedure_surface/arrow/pathfinding/all_shortest_path_arrow_endpoints.py
241
- src/graphdatascience/procedure_surface/arrow/pathfinding/bfs_arrow_endpoints.py
242
236
  src/graphdatascience/procedure_surface/arrow/pathfinding/dag_arrow_endpoints.py
243
237
  src/graphdatascience/procedure_surface/arrow/pathfinding/dijkstra_arrow_endpoints.py
244
238
  src/graphdatascience/procedure_surface/arrow/pathfinding/k_spanning_tree_arrow_endpoints.py
@@ -277,7 +271,6 @@ src/graphdatascience/procedure_surface/cypher/centrality/__init__.py
277
271
  src/graphdatascience/procedure_surface/cypher/centrality/articlerank_cypher_endpoints.py
278
272
  src/graphdatascience/procedure_surface/cypher/centrality/articulationpoints_cypher_endpoints.py
279
273
  src/graphdatascience/procedure_surface/cypher/centrality/betweenness_cypher_endpoints.py
280
- src/graphdatascience/procedure_surface/cypher/centrality/bridges_cypher_endpoints.py
281
274
  src/graphdatascience/procedure_surface/cypher/centrality/celf_cypher_endpoints.py
282
275
  src/graphdatascience/procedure_surface/cypher/centrality/closeness_cypher_endpoints.py
283
276
  src/graphdatascience/procedure_surface/cypher/centrality/closeness_harmonic_cypher_endpoints.py
@@ -302,7 +295,6 @@ src/graphdatascience/procedure_surface/cypher/community/scc_cypher_endpoints.py
302
295
  src/graphdatascience/procedure_surface/cypher/community/sllpa_cypher_endpoints.py
303
296
  src/graphdatascience/procedure_surface/cypher/community/triangle_count_cypher_endpoints.py
304
297
  src/graphdatascience/procedure_surface/cypher/community/wcc_cypher_endpoints.py
305
- src/graphdatascience/procedure_surface/cypher/model/model_catalog_cypher_endpoints.py
306
298
  src/graphdatascience/procedure_surface/cypher/node_embedding/__init__.py
307
299
  src/graphdatascience/procedure_surface/cypher/node_embedding/fastrp_cypher_endpoints.py
308
300
  src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_predict_cypher_endpoints.py
@@ -311,7 +303,6 @@ src/graphdatascience/procedure_surface/cypher/node_embedding/hashgnn_cypher_endp
311
303
  src/graphdatascience/procedure_surface/cypher/node_embedding/node2vec_cypher_endpoints.py
312
304
  src/graphdatascience/procedure_surface/cypher/pathfinding/__init__.py
313
305
  src/graphdatascience/procedure_surface/cypher/pathfinding/all_shortest_path_cypher_endpoints.py
314
- src/graphdatascience/procedure_surface/cypher/pathfinding/bfs_cypher_endpoints.py
315
306
  src/graphdatascience/procedure_surface/cypher/pathfinding/dag_cypher_endpoints.py
316
307
  src/graphdatascience/procedure_surface/cypher/pathfinding/dijkstra_cypher_endpoints.py
317
308
  src/graphdatascience/procedure_surface/cypher/pathfinding/k_spanning_tree_cypher_endpoints.py