graphdatascience 1.21a1__tar.gz → 1.22__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 (515) hide show
  1. {graphdatascience-1.21a1/src/graphdatascience.egg-info → graphdatascience-1.22}/PKG-INFO +1 -1
  2. {graphdatascience-1.21a1 → graphdatascience-1.22}/pyproject.toml +2 -0
  3. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/authenticated_flight_client.py +29 -9
  4. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/middleware/auth_middleware.py +1 -1
  5. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/middleware/user_agent_middleware.py +1 -1
  6. {graphdatascience-1.21a1/src/graphdatascience/arrow_client/v2 → graphdatascience-1.22/src/graphdatascience/arrow_client/v1}/data_mapper_utils.py +1 -1
  7. {graphdatascience-1.21a1/src/graphdatascience/arrow_client/v1 → graphdatascience-1.22/src/graphdatascience/arrow_client/v2}/data_mapper_utils.py +1 -1
  8. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/gds_arrow_client.py +48 -26
  9. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/job_client.py +15 -2
  10. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/mutation_client.py +21 -1
  11. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/endpoints.py +23 -1
  12. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/client_only_endpoint.py +5 -1
  13. graphdatascience-1.22/src/graphdatascience/graph/graph_remote_proc_runner.py +76 -0
  14. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/model.py +1 -4
  15. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/model_details.py +3 -3
  16. graphdatascience-1.22/src/graphdatascience/pipeline/pipeline_alpha_proc_runner.py +25 -0
  17. graphdatascience-1.22/src/graphdatascience/pipeline/pipeline_beta_proc_runner.py +79 -0
  18. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/pipeline_endpoints.py +51 -3
  19. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/pipeline_proc_runner.py +27 -1
  20. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/training_pipeline.py +2 -2
  21. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/plugin_v2_endpoints.py +44 -5
  22. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/__init__.py +12 -0
  23. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/catalog_endpoints.py +35 -14
  24. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/dataset_endpoints.py +4 -3
  25. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/graph_sampling_endpoints.py +6 -0
  26. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/node_properties_endpoints.py +2 -2
  27. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/relationships_endpoints.py +8 -5
  28. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/collapse_path_endpoints.py +57 -0
  29. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/__init__.py +2 -0
  30. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/community/triangles_endpoints.py +61 -0
  31. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/default_values.py +2 -0
  32. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/job_handle.py +135 -0
  33. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/job_not_finished_error.py +9 -0
  34. graphdatascience-1.21a1/src/graphdatascience/procedure_surface/api/system_endpoints.py → graphdatascience-1.22/src/graphdatascience/procedure_surface/api/list_progress_endpoint.py +2 -2
  35. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/model/link_prediction_model.py +144 -0
  36. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/model/model_catalog_endpoints.py +25 -8
  37. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/model/node_classification_model.py +253 -0
  38. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/model/node_regression_model.py +131 -0
  39. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_endpoints.py +1 -1
  40. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_train_endpoints.py +2 -2
  41. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/__init__.py +8 -0
  42. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pathfinding/random_walk_endpoints.py +279 -0
  43. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/__init__.py +71 -0
  44. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_pipeline.py +224 -0
  45. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_pipeline_endpoints.py +307 -0
  46. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_pipeline_protocol.py +90 -0
  47. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_pipeline_results.py +27 -0
  48. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_predict_endpoints.py +94 -0
  49. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/link_prediction_train_endpoints.py +140 -0
  50. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_pipeline.py +423 -0
  51. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_pipeline_endpoints.py +292 -0
  52. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_pipeline_protocol.py +79 -0
  53. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_pipeline_results.py +27 -0
  54. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_predict_endpoints.py +228 -0
  55. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_classification_train_endpoints.py +134 -0
  56. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_metric.py +7 -0
  57. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_pipeline.py +281 -0
  58. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_pipeline_endpoints.py +282 -0
  59. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_pipeline_protocol.py +78 -0
  60. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_pipeline_results.py +27 -0
  61. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/node_regression_predict_endpoints.py +113 -0
  62. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/parameter_space_config.py +25 -0
  63. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/pipeline_catalog_protocol.py +16 -0
  64. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/pipeline/pipeline_endpoints.py +64 -0
  65. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/projection_job_handle.py +72 -0
  66. graphdatascience-1.22/src/graphdatascience/procedure_surface/api/write_job_handle.py +143 -0
  67. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/catalog_arrow_endpoints.py +288 -40
  68. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/graph_sampling_arrow_endpoints.py +4 -0
  69. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/node_label_arrow_endpoints.py +4 -4
  70. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/node_properties_arrow_endpoints.py +14 -9
  71. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/relationship_arrow_endpoints.py +20 -15
  72. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/scale_properties_arrow_endpoints.py +3 -3
  73. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/articlerank_arrow_endpoints.py +40 -3
  74. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/articulationpoints_arrow_endpoints.py +28 -3
  75. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/betweenness_arrow_endpoints.py +34 -3
  76. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/bridges_arrow_endpoints.py +27 -3
  77. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/celf_arrow_endpoints.py +35 -3
  78. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_arrow_endpoints.py +30 -3
  79. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/closeness_harmonic_arrow_endpoints.py +28 -3
  80. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/degree_arrow_endpoints.py +31 -3
  81. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/eigenvector_arrow_endpoints.py +39 -3
  82. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/pagerank_arrow_endpoints.py +88 -3
  83. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/collapse_path_arrow_endpoints.py +49 -0
  84. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/clique_counting_arrow_endpoints.py +28 -3
  85. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/conductance_arrow_endpoints.py +28 -0
  86. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/hdbscan_arrow_endpoints.py +37 -4
  87. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/k1coloring_arrow_endpoints.py +32 -3
  88. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/kcore_arrow_endpoints.py +27 -3
  89. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/kmeans_arrow_endpoints.py +46 -3
  90. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/labelpropagation_arrow_endpoints.py +38 -3
  91. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/leiden_arrow_endpoints.py +47 -4
  92. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/local_clustering_coefficient_arrow_endpoints.py +30 -3
  93. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/louvain_arrow_endpoints.py +41 -3
  94. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/maxkcut_arrow_endpoints.py +39 -4
  95. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/modularity_arrow_endpoints.py +28 -0
  96. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/modularity_optimization_arrow_endpoints.py +40 -3
  97. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/scc_arrow_endpoints.py +29 -3
  98. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/sllpa_arrow_endpoints.py +34 -3
  99. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/triangle_count_arrow_endpoints.py +33 -4
  100. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/community/triangles_arrow_endpoints.py +48 -0
  101. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/wcc_arrow_endpoints.py +35 -3
  102. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/endpoints_helper_base.py +33 -45
  103. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/jobs_arrow_endpoints.py +105 -0
  104. graphdatascience-1.21a1/src/graphdatascience/procedure_surface/arrow/system_arrow_endpoints.py → graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/list_progress_arrow_endpoint.py +3 -3
  105. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/model/model_catalog_arrow_endpoints.py +19 -5
  106. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/mutation_runner.py +63 -0
  107. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/fastrp_arrow_endpoints.py +43 -3
  108. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_predict_arrow_endpoints.py +32 -3
  109. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/graphsage_train_arrow_endpoints.py +6 -6
  110. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/hashgnn_arrow_endpoints.py +46 -3
  111. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/node2vec_arrow_endpoints.py +60 -3
  112. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_property_endpoints.py +6 -1
  113. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/all_shortest_path_arrow_endpoints.py +31 -5
  114. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/bfs_arrow_endpoints.py +33 -3
  115. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/dfs_arrow_endpoints.py +33 -3
  116. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/dijkstra_arrow_endpoints.py +34 -3
  117. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/k_spanning_tree_arrow_endpoints.py +36 -3
  118. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/longest_path_arrow_endpoints.py +28 -1
  119. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/max_flow_arrow_endpoints.py +37 -4
  120. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/max_flow_min_cost_arrow_endpoints.py +40 -3
  121. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/prize_steiner_tree_arrow_endpoints.py +32 -3
  122. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pathfinding/random_walk_arrow_endpoints.py +202 -0
  123. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/shortest_path_arrow_endpoints.py +5 -5
  124. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_bellman_ford_arrow_endpoints.py +32 -3
  125. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_delta_arrow_endpoints.py +34 -3
  126. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/single_source_dijkstra_arrow_endpoints.py +32 -3
  127. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_astar_arrow_endpoints.py +38 -3
  128. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_dijkstra_arrow_endpoints.py +34 -3
  129. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/source_target_yens_arrow_endpoints.py +36 -3
  130. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/spanning_tree_arrow_endpoints.py +34 -3
  131. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/steiner_tree_arrow_endpoints.py +38 -3
  132. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/__init__.py +21 -0
  133. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/link_prediction_pipeline_arrow_endpoints.py +262 -0
  134. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/link_prediction_predict_arrow_endpoints.py +166 -0
  135. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/link_prediction_train_arrow_endpoints.py +134 -0
  136. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_classification_pipeline_arrow_endpoints.py +247 -0
  137. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_classification_predict_arrow_endpoints.py +185 -0
  138. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_classification_train_arrow_endpoints.py +131 -0
  139. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_regression_pipeline_arrow_endpoints.py +232 -0
  140. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/node_regression_predict_arrow_endpoints.py +97 -0
  141. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/pipeline_arrow_endpoints.py +50 -0
  142. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/pipeline/pipeline_catalog_arrow_endpoints.py +49 -0
  143. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/knn_arrow_endpoints.py +49 -4
  144. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/knn_filtered_arrow_endpoints.py +54 -3
  145. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_arrow_endpoints.py +96 -4
  146. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/node_similarity_filtered_arrow_endpoints.py +52 -3
  147. graphdatascience-1.22/src/graphdatascience/procedure_surface/arrow/stream_result_mapper.py +115 -0
  148. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/__init__.py +3 -0
  149. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/catalog_cypher_endpoints.py +12 -3
  150. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/graph_sampling_cypher_endpoints.py +4 -0
  151. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/node_properties_cypher_endpoints.py +2 -2
  152. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/relationship_cypher_endpoints.py +7 -11
  153. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/collapse_path_cypher_endpoints.py +49 -0
  154. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/community/triangles_cypher_endpoints.py +46 -0
  155. graphdatascience-1.21a1/src/graphdatascience/procedure_surface/cypher/system_cypher_endpoints.py → graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/list_progress_cypher_endpoint.py +3 -3
  156. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/model/model_catalog_cypher_endpoints.py +24 -5
  157. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_train_cypher_endpoints.py +1 -1
  158. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pathfinding/random_walk_cypher_endpoints.py +193 -0
  159. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/__init__.py +19 -0
  160. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/link_prediction_pipeline_cypher_endpoints.py +252 -0
  161. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/link_prediction_predict_cypher_endpoints.py +157 -0
  162. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/link_prediction_train_cypher_endpoints.py +120 -0
  163. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_classification_pipeline_cypher_endpoints.py +237 -0
  164. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_classification_predict_cypher_endpoints.py +151 -0
  165. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_classification_train_cypher_endpoints.py +115 -0
  166. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_regression_pipeline_cypher_endpoints.py +224 -0
  167. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/node_regression_predict_cypher_endpoints.py +78 -0
  168. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/pipeline_catalog_cypher_endpoints.py +52 -0
  169. graphdatascience-1.22/src/graphdatascience/procedure_surface/cypher/pipeline/pipeline_cypher_endpoints.py +27 -0
  170. graphdatascience-1.22/src/graphdatascience/query_runner/protocol/arrow_config.py +23 -0
  171. graphdatascience-1.22/src/graphdatascience/query_runner/protocol/project_protocols.py +279 -0
  172. graphdatascience-1.22/src/graphdatascience/query_runner/protocol/projection_runner.py +147 -0
  173. graphdatascience-1.22/src/graphdatascience/query_runner/protocol/write_protocols.py +193 -0
  174. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/session_query_runner.py +15 -75
  175. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/aura_api.py +21 -4
  176. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/aura_graph_data_science.py +21 -6
  177. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dbms/protocol_resolver.py +2 -0
  178. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dbms/protocol_version.py +1 -0
  179. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dedicated_sessions.py +15 -3
  180. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/gds_sessions.py +23 -3
  181. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/session_v2_endpoints.py +98 -61
  182. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/version.py +1 -1
  183. {graphdatascience-1.21a1 → graphdatascience-1.22/src/graphdatascience.egg-info}/PKG-INFO +1 -1
  184. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/SOURCES.txt +67 -7
  185. graphdatascience-1.21a1/src/graphdatascience/arrow_client/v2/remote_write_back_client.py +0 -83
  186. graphdatascience-1.21a1/src/graphdatascience/graph/graph_remote_proc_runner.py +0 -8
  187. graphdatascience-1.21a1/src/graphdatascience/graph/graph_remote_project_runner.py +0 -49
  188. graphdatascience-1.21a1/src/graphdatascience/model/v2/graphsage_model.py +0 -0
  189. graphdatascience-1.21a1/src/graphdatascience/pipeline/pipeline_alpha_proc_runner.py +0 -9
  190. graphdatascience-1.21a1/src/graphdatascience/pipeline/pipeline_beta_proc_runner.py +0 -32
  191. graphdatascience-1.21a1/src/graphdatascience/procedure_surface/api/__init__.py +0 -5
  192. graphdatascience-1.21a1/src/graphdatascience/procedure_surface/arrow/stream_result_mapper.py +0 -69
  193. graphdatascience-1.21a1/src/graphdatascience/procedure_surface/cypher/__init__.py +0 -3
  194. graphdatascience-1.21a1/src/graphdatascience/query_runner/protocol/project_protocols.py +0 -197
  195. graphdatascience-1.21a1/src/graphdatascience/query_runner/protocol/write_protocols.py +0 -198
  196. graphdatascience-1.21a1/src/graphdatascience/session/aurads_sessions.py +0 -0
  197. {graphdatascience-1.21a1 → graphdatascience-1.22}/LICENSE +0 -0
  198. {graphdatascience-1.21a1 → graphdatascience-1.22}/MANIFEST.in +0 -0
  199. {graphdatascience-1.21a1 → graphdatascience-1.22}/README.md +0 -0
  200. {graphdatascience-1.21a1 → graphdatascience-1.22}/setup.cfg +0 -0
  201. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/__init__.py +0 -0
  202. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/algo/__init__.py +0 -0
  203. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/algo/algo_endpoints.py +0 -0
  204. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/algo/algo_proc_runner.py +0 -0
  205. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/algo/single_mode_algo_endpoints.py +0 -0
  206. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/__init__.py +0 -0
  207. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_authentication.py +0 -0
  208. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_base_model.py +0 -0
  209. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_client_options_util.py +0 -0
  210. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_endpoint_version.py +0 -0
  211. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/arrow_info.py +0 -0
  212. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/middleware/__init__.py +0 -0
  213. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/progress_callback.py +0 -0
  214. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v1/__init__.py +0 -0
  215. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v1/gds_arrow_client.py +0 -0
  216. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/__init__.py +0 -0
  217. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/arrow_client/v2/api_types.py +0 -0
  218. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/call_builder.py +0 -0
  219. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/call_parameters.py +0 -0
  220. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/caller_base.py +0 -0
  221. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/__init__.py +0 -0
  222. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/graph_constructor_func.py +0 -0
  223. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/nx_loader.py +0 -0
  224. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/ogb_loader.py +0 -0
  225. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/datasets/simple_file_loader.py +0 -0
  226. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/__init__.py +0 -0
  227. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/cypher_warning_handler.py +0 -0
  228. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/endpoint_suggester.py +0 -0
  229. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/gds_not_installed.py +0 -0
  230. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/illegal_attr_checker.py +0 -0
  231. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/unable_to_connect.py +0 -0
  232. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/error/uncallable_namespace.py +0 -0
  233. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/__init__.py +0 -0
  234. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/base_graph_proc_runner.py +0 -0
  235. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_alpha_proc_runner.py +0 -0
  236. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_beta_proc_runner.py +0 -0
  237. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_create_result.py +0 -0
  238. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_cypher_runner.py +0 -0
  239. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_endpoints.py +0 -0
  240. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_entity_ops_runner.py +0 -0
  241. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_export_runner.py +0 -0
  242. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_object.py +0 -0
  243. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_proc_runner.py +0 -0
  244. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_project_runner.py +0 -0
  245. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_sample_runner.py +0 -0
  246. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/graph_type_check.py +0 -0
  247. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/nx_loader.py +0 -0
  248. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/ogb_loader.py +0 -0
  249. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/v2/__init__.py +0 -0
  250. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/v2/graph_api.py +0 -0
  251. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/v2/graph_backend.py +0 -0
  252. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph/v2/graph_backend_cypher.py +0 -0
  253. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/graph_data_science.py +0 -0
  254. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/ignored_server_endpoints.py +0 -0
  255. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/__init__.py +0 -0
  256. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/graphsage_model.py +0 -0
  257. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/link_prediction_model.py +0 -0
  258. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model.py +0 -0
  259. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_alpha_proc_runner.py +0 -0
  260. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_beta_proc_runner.py +0 -0
  261. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_endpoints.py +0 -0
  262. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_proc_runner.py +0 -0
  263. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/model_resolver.py +0 -0
  264. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/node_classification_model.py +0 -0
  265. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/node_regression_model.py +0 -0
  266. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/pipeline_model.py +0 -0
  267. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/simple_rel_embedding_model.py +0 -0
  268. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/__init__.py +0 -0
  269. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/model/v2/model_api.py +0 -0
  270. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/__init__.py +0 -0
  271. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/classification_training_pipeline.py +0 -0
  272. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/lp_pipeline_create_runner.py +0 -0
  273. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/lp_training_pipeline.py +0 -0
  274. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/nc_pipeline_create_runner.py +0 -0
  275. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/nc_training_pipeline.py +0 -0
  276. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/nr_pipeline_create_runner.py +0 -0
  277. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/pipeline/nr_training_pipeline.py +0 -0
  278. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/__init__.py +0 -0
  279. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/base_result.py +0 -0
  280. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/__init__.py +0 -0
  281. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/graph_info.py +0 -0
  282. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/node_label_endpoints.py +0 -0
  283. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/scale_properties_endpoints.py +0 -0
  284. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/catalog/scaler_config.py +0 -0
  285. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/__init__.py +0 -0
  286. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/articlerank_endpoints.py +0 -0
  287. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/articulationpoints_endpoints.py +0 -0
  288. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/betweenness_endpoints.py +0 -0
  289. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/bridges_endpoints.py +0 -0
  290. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/celf_endpoints.py +0 -0
  291. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/closeness_endpoints.py +0 -0
  292. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/closeness_harmonic_endpoints.py +0 -0
  293. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/degree_endpoints.py +0 -0
  294. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/eigenvector_endpoints.py +0 -0
  295. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/centrality/pagerank_endpoints.py +0 -0
  296. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/clique_counting_endpoints.py +0 -0
  297. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/conductance_endpoints.py +0 -0
  298. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/hdbscan_endpoints.py +0 -0
  299. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/k1coloring_endpoints.py +0 -0
  300. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/kcore_endpoints.py +0 -0
  301. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/kmeans_endpoints.py +0 -0
  302. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/labelpropagation_endpoints.py +0 -0
  303. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/leiden_endpoints.py +0 -0
  304. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/local_clustering_coefficient_endpoints.py +0 -0
  305. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/louvain_endpoints.py +0 -0
  306. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/maxkcut_endpoints.py +0 -0
  307. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/modularity_endpoints.py +0 -0
  308. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/modularity_optimization_endpoints.py +0 -0
  309. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/scc_endpoints.py +0 -0
  310. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/sllpa_endpoints.py +0 -0
  311. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/triangle_count_endpoints.py +0 -0
  312. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/community/wcc_endpoints.py +0 -0
  313. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/config_endpoints.py +0 -0
  314. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/estimation_result.py +0 -0
  315. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/model/__init__.py +0 -0
  316. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/model/graphsage_model.py +0 -0
  317. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/__init__.py +0 -0
  318. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/fastrp_endpoints.py +0 -0
  319. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/graphsage_predict_endpoints.py +0 -0
  320. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/hashgnn_endpoints.py +0 -0
  321. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/node_embedding/node2vec_endpoints.py +0 -0
  322. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/all_shortest_path_endpoints.py +0 -0
  323. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/bfs_endpoints.py +0 -0
  324. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/dag_endpoints.py +0 -0
  325. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/dfs_endpoints.py +0 -0
  326. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/dijkstra_endpoints.py +0 -0
  327. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/k_spanning_tree_endpoints.py +0 -0
  328. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/longest_path_endpoints.py +0 -0
  329. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/max_flow_endpoints.py +0 -0
  330. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/max_flow_min_cost_endpoints.py +0 -0
  331. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/prize_steiner_tree_endpoints.py +0 -0
  332. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/shortest_path_endpoints.py +0 -0
  333. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_bellman_ford_endpoints.py +0 -0
  334. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_delta_endpoints.py +0 -0
  335. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/single_source_dijkstra_endpoints.py +0 -0
  336. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_astar_endpoints.py +0 -0
  337. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_dijkstra_endpoints.py +0 -0
  338. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/source_target_yens_endpoints.py +0 -0
  339. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/spanning_tree_endpoints.py +0 -0
  340. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/pathfinding/steiner_tree_endpoints.py +0 -0
  341. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/__init__.py +0 -0
  342. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/knn_endpoints.py +0 -0
  343. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/knn_filtered_endpoints.py +0 -0
  344. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/knn_results.py +0 -0
  345. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_endpoints.py +0 -0
  346. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_filtered_endpoints.py +0 -0
  347. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/api/similarity/node_similarity_results.py +0 -0
  348. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/__init__.py +0 -0
  349. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/__init__.py +0 -0
  350. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/graph_backend_arrow.py +0 -0
  351. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/catalog/graph_ops_arrow.py +0 -0
  352. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/centrality/__init__.py +0 -0
  353. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/community/__init__.py +0 -0
  354. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/config_arrow_endpoints.py +0 -0
  355. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/error_handler.py +0 -0
  356. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/model/__init__.py +0 -0
  357. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/model_api_arrow.py +0 -0
  358. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/node_embedding/__init__.py +0 -0
  359. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/__init__.py +0 -0
  360. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/pathfinding/dag_arrow_endpoints.py +0 -0
  361. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/relationship_endpoints_helper.py +0 -0
  362. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/similarity/__init__.py +0 -0
  363. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/arrow/table_endpoints_helper.py +0 -0
  364. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/__init__.py +0 -0
  365. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/node_label_cypher_endpoints.py +0 -0
  366. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/scale_properties_cypher_endpoints.py +0 -0
  367. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/catalog/utils.py +0 -0
  368. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/__init__.py +0 -0
  369. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/articlerank_cypher_endpoints.py +0 -0
  370. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/articulationpoints_cypher_endpoints.py +0 -0
  371. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/betweenness_cypher_endpoints.py +0 -0
  372. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/bridges_cypher_endpoints.py +0 -0
  373. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/celf_cypher_endpoints.py +0 -0
  374. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_cypher_endpoints.py +0 -0
  375. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/closeness_harmonic_cypher_endpoints.py +0 -0
  376. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/degree_cypher_endpoints.py +0 -0
  377. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/eigenvector_cypher_endpoints.py +0 -0
  378. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/centrality/pagerank_cypher_endpoints.py +0 -0
  379. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/__init__.py +0 -0
  380. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/clique_counting_cypher_endpoints.py +0 -0
  381. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/conductance_cypher_endpoints.py +0 -0
  382. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/hdbscan_cypher_endpoints.py +0 -0
  383. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/k1coloring_cypher_endpoints.py +0 -0
  384. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/kcore_cypher_endpoints.py +0 -0
  385. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/kmeans_cypher_endpoints.py +0 -0
  386. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/labelpropagation_cypher_endpoints.py +0 -0
  387. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/leiden_cypher_endpoints.py +0 -0
  388. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/local_clustering_coefficient_cypher_endpoints.py +0 -0
  389. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/louvain_cypher_endpoints.py +0 -0
  390. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/maxkcut_cypher_endpoints.py +0 -0
  391. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/modularity_cypher_endpoints.py +0 -0
  392. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/modularity_optimization_cypher_endpoints.py +0 -0
  393. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/scc_cypher_endpoints.py +0 -0
  394. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/sllpa_cypher_endpoints.py +0 -0
  395. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/triangle_count_cypher_endpoints.py +0 -0
  396. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/community/wcc_cypher_endpoints.py +0 -0
  397. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/config_cypher_endpoints.py +0 -0
  398. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/estimation_utils.py +0 -0
  399. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/model/__init__.py +0 -0
  400. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/model_api_cypher.py +0 -0
  401. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/__init__.py +0 -0
  402. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/fastrp_cypher_endpoints.py +0 -0
  403. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/graphsage_predict_cypher_endpoints.py +0 -0
  404. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/hashgnn_cypher_endpoints.py +0 -0
  405. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/node_embedding/node2vec_cypher_endpoints.py +0 -0
  406. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/__init__.py +0 -0
  407. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/all_shortest_path_cypher_endpoints.py +0 -0
  408. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/bfs_cypher_endpoints.py +0 -0
  409. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/dag_cypher_endpoints.py +0 -0
  410. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/dfs_cypher_endpoints.py +0 -0
  411. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/dijkstra_cypher_endpoints.py +0 -0
  412. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/k_spanning_tree_cypher_endpoints.py +0 -0
  413. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/longest_path_cypher_endpoints.py +0 -0
  414. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/max_flow_cypher_endpoints.py +0 -0
  415. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/max_flow_min_cost_cypher_endpoints.py +0 -0
  416. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/prize_steiner_tree_cypher_endpoints.py +0 -0
  417. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/shortest_path_cypher_endpoints.py +0 -0
  418. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_bellman_ford_cypher_endpoints.py +0 -0
  419. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_delta_cypher_endpoints.py +0 -0
  420. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/single_source_dijkstra_cypher_endpoints.py +0 -0
  421. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_astar_cypher_endpoints.py +0 -0
  422. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_dijkstra_cypher_endpoints.py +0 -0
  423. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/source_target_yens_cypher_endpoints.py +0 -0
  424. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/spanning_tree_cypher_endpoints.py +0 -0
  425. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/pathfinding/steiner_tree_cypher_endpoints.py +0 -0
  426. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/__init__.py +0 -0
  427. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/knn_cypher_endpoints.py +0 -0
  428. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/knn_filtered_cypher_endpoints.py +0 -0
  429. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_cypher_endpoints.py +0 -0
  430. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/cypher/similarity/node_similarity_filtered_cypher_endpoints.py +0 -0
  431. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/utils/__init__.py +0 -0
  432. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/utils/config_converter.py +0 -0
  433. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/procedure_surface/utils/result_utils.py +0 -0
  434. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/py.typed +0 -0
  435. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/__init__.py +0 -0
  436. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/arrow_authentication/__init__.py +0 -0
  437. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/arrow_graph_constructor.py +0 -0
  438. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/arrow_info/__init__.py +0 -0
  439. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/arrow_query_runner.py +0 -0
  440. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/cypher_graph_constructor.py +0 -0
  441. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/db_environment_resolver.py +0 -0
  442. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/gds_arrow_client.py +0 -0
  443. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/graph_constructor.py +0 -0
  444. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/neo4j_query_runner.py +0 -0
  445. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/__init__.py +0 -0
  446. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/progress_bar.py +0 -0
  447. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/progress_provider.py +0 -0
  448. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/query_progress_logger.py +0 -0
  449. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/query_progress_provider.py +0 -0
  450. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/progress/static_progress_provider.py +0 -0
  451. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/protocol/__init__.py +0 -0
  452. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/protocol/status.py +0 -0
  453. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/query_mode.py +0 -0
  454. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/query_runner.py +0 -0
  455. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/query_type.py +0 -0
  456. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/standalone_session_query_runner.py +0 -0
  457. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/query_runner/termination_flag.py +0 -0
  458. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/__init__.py +0 -0
  459. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/cora/__init__.py +0 -0
  460. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/cora/cora_nodes.parquet.gzip +0 -0
  461. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/cora/cora_rels.parquet.gzip +0 -0
  462. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/cora/serialize_cora.py +0 -0
  463. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/__init__.py +0 -0
  464. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_acted_in.parquet.gzip +0 -0
  465. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_actors.parquet.gzip +0 -0
  466. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_directed_in.parquet.gzip +0 -0
  467. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_directors.parquet.gzip +0 -0
  468. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_movies_with_genre.parquet.gzip +0 -0
  469. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/imdb_movies_without_genre.parquet.gzip +0 -0
  470. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/imdb/serialize_imdb.py +0 -0
  471. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/karate/__init__.py +0 -0
  472. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/karate/karate_club.parquet.gzip +0 -0
  473. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/__init__.py +0 -0
  474. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/artist_nodes.parquet.gzip +0 -0
  475. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/serialize_lastfm.py +0 -0
  476. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/user_friend_df_directed.parquet.gzip +0 -0
  477. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/user_listen_artist_rels.parquet.gzip +0 -0
  478. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/user_nodes.parquet.gzip +0 -0
  479. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/resources/lastfm/user_tag_artist_rels.parquet.gzip +0 -0
  480. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/retry_utils/__init__.py +0 -0
  481. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/retry_utils/neo4j_retry_helper.py +0 -0
  482. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/retry_utils/retry_config.py +0 -0
  483. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/retry_utils/retry_utils.py +0 -0
  484. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/semantic_version/__init__.py +0 -0
  485. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/semantic_version/semantic_version.py +0 -0
  486. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/server_version/__init__.py +0 -0
  487. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/server_version/compatible_with.py +0 -0
  488. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/server_version/server_version.py +0 -0
  489. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/__init__.py +0 -0
  490. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/algorithm_category.py +0 -0
  491. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/aura_api_responses.py +0 -0
  492. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/aura_api_token_authentication.py +0 -0
  493. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/cloud_location.py +0 -0
  494. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dbms/__init__.py +0 -0
  495. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/dbms_connection_info.py +0 -0
  496. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/region_suggester.py +0 -0
  497. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/session_info.py +0 -0
  498. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/session_lifecycle_manager.py +0 -0
  499. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/session/session_sizes.py +0 -0
  500. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/system/__init__.py +0 -0
  501. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/system/config_endpoints.py +0 -0
  502. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/system/system_endpoints.py +0 -0
  503. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/topological_lp/__init__.py +0 -0
  504. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/topological_lp/topological_lp_alpha_endpoints.py +0 -0
  505. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/topological_lp/topological_lp_alpha_runner.py +0 -0
  506. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/topological_lp/topological_lp_runner.py +0 -0
  507. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/__init__.py +0 -0
  508. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/direct_util_endpoints.py +0 -0
  509. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/util_node_property_func_runner.py +0 -0
  510. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/util_proc_runner.py +0 -0
  511. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience/utils/util_remote_proc_runner.py +0 -0
  512. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/dependency_links.txt +0 -0
  513. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/not-zip-safe +0 -0
  514. {graphdatascience-1.21a1 → graphdatascience-1.22}/src/graphdatascience.egg-info/requires.txt +0 -0
  515. {graphdatascience-1.21a1 → graphdatascience-1.22}/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.21a1
3
+ Version: 1.22
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
@@ -59,6 +59,7 @@ dev = [
59
59
  { include-group = "dev-base" },
60
60
  { include-group = "test" },
61
61
  { include-group = "docs-ci" },
62
+ { include-group = "notebook-base"}
62
63
  ]
63
64
 
64
65
  dev-base = [
@@ -77,6 +78,7 @@ dev-base = [
77
78
  ]
78
79
  test = [
79
80
  "pytest == 9.0.2",
81
+ "pytest-timeout",
80
82
  "requests_mock == 1.12.1",
81
83
  "pytest_mock == 3.15.1",
82
84
  "testcontainers == 4.14.0",
@@ -10,7 +10,7 @@ from typing import Any, Iterator, Type
10
10
  import certifi
11
11
  from pyarrow import Schema, flight
12
12
  from pyarrow import __version__ as arrow_version
13
- from pyarrow._flight import (
13
+ from pyarrow.flight import (
14
14
  Action,
15
15
  ActionType,
16
16
  FlightInternalError,
@@ -118,6 +118,14 @@ class AuthenticatedArrowClient:
118
118
 
119
119
  self._flight_client: flight.FlightClient = self._instantiate_flight_client()
120
120
 
121
+ def _reconnect(self) -> None:
122
+ try:
123
+ self._flight_client.close()
124
+ except Exception:
125
+ pass
126
+
127
+ self._flight_client = self._instantiate_flight_client()
128
+
121
129
  def connection_info(self) -> ConnectionInfo:
122
130
  """
123
131
  Returns the host and port of the GDS Arrow server.
@@ -156,10 +164,14 @@ class AuthenticatedArrowClient:
156
164
 
157
165
  @self._retry_config.decorator(operation_name="Request token", logger=self._logger)
158
166
  def auth_with_retry() -> None:
159
- client = self._flight_client
160
- if self._auth:
161
- auth_pair = self._auth.auth_pair()
162
- client.authenticate_basic_token(auth_pair[0], auth_pair[1])
167
+ try:
168
+ client = self._flight_client
169
+ if self._auth:
170
+ auth_pair = self._auth.auth_pair()
171
+ client.authenticate_basic_token(auth_pair[0], auth_pair[1])
172
+ except (FlightTimedOutError, FlightUnavailableError, FlightInternalError):
173
+ self._reconnect()
174
+ raise
163
175
 
164
176
  if self._auth:
165
177
  auth_with_retry()
@@ -178,9 +190,13 @@ class AuthenticatedArrowClient:
178
190
  def do_action_with_retry(self, endpoint: str, payload: bytes | dict[str, Any]) -> list[Result]:
179
191
  @self._retry_config.decorator(operation_name="Send action", logger=self._logger)
180
192
  def run_with_retry() -> list[Result]:
181
- # the Flight response error code is only checked on iterator consumption
182
- # we eagerly collect iterator here to trigger retry in case of an error
183
- return list(self.do_action(endpoint, payload))
193
+ try:
194
+ # the Flight response error code is only checked on iterator consumption
195
+ # we eagerly collect iterator here to trigger retry in case of an error
196
+ return list(self.do_action(endpoint, payload))
197
+ except (FlightTimedOutError, FlightUnavailableError, FlightInternalError):
198
+ self._reconnect()
199
+ raise
184
200
 
185
201
  return run_with_retry()
186
202
 
@@ -192,7 +208,11 @@ class AuthenticatedArrowClient:
192
208
  ) -> tuple[flight.FlightStreamWriter, flight.FlightMetadataReader]:
193
209
  @self._retry_config.decorator(operation_name="Do put", logger=self._logger)
194
210
  def run_with_retry() -> tuple[flight.FlightStreamWriter, flight.FlightMetadataReader]:
195
- return self._flight_client.do_put(descriptor, schema) # type: ignore
211
+ try:
212
+ return self._flight_client.do_put(descriptor, schema) # type: ignore
213
+ except (FlightTimedOutError, FlightUnavailableError, FlightInternalError):
214
+ self._reconnect()
215
+ raise
196
216
 
197
217
  return run_with_retry()
198
218
 
@@ -4,7 +4,7 @@ import base64
4
4
  import time
5
5
  from typing import Any
6
6
 
7
- from pyarrow._flight import ClientMiddleware, ClientMiddlewareFactory
7
+ from pyarrow.flight import ClientMiddleware, ClientMiddlewareFactory
8
8
 
9
9
  from graphdatascience.arrow_client.arrow_authentication import ArrowAuthentication
10
10
 
@@ -2,7 +2,7 @@ from __future__ import annotations
2
2
 
3
3
  from typing import Any
4
4
 
5
- from pyarrow._flight import ClientMiddleware, ClientMiddlewareFactory
5
+ from pyarrow.flight import ClientMiddleware, ClientMiddlewareFactory
6
6
 
7
7
 
8
8
  class UserAgentFactory(ClientMiddlewareFactory): # type: ignore
@@ -1,7 +1,7 @@
1
1
  import json
2
2
  from typing import Any
3
3
 
4
- from pyarrow._flight import Result
4
+ from pyarrow.flight import Result
5
5
 
6
6
 
7
7
  def deserialize_single(input_stream: list[Result]) -> dict[str, Any]:
@@ -1,7 +1,7 @@
1
1
  import json
2
2
  from typing import Any
3
3
 
4
- from pyarrow._flight import Result
4
+ from pyarrow.flight import Result
5
5
 
6
6
 
7
7
  def deserialize_single(input_stream: list[Result]) -> dict[str, Any]:
@@ -123,7 +123,8 @@ class GdsArrowClient:
123
123
  job_id=job_id,
124
124
  )
125
125
 
126
- return JobClient.run_job_and_wait(self._flight_client, "v2/graph.nodeLabel.stream", config, log_progress)
126
+ compute_job = JobClient.run_job_and_wait(self._flight_client, "v2/graph.nodeLabel.stream", config, log_progress)
127
+ return JobClient.start_export_result(self._flight_client, graph_name, compute_job)
127
128
 
128
129
  def get_relationships(
129
130
  self,
@@ -175,14 +176,12 @@ class GdsArrowClient:
175
176
 
176
177
  return JobClient.run_job(self._flight_client, endpoint, config)
177
178
 
178
- def stream_job(self, graph_name: str, job_id: str) -> pandas.DataFrame:
179
+ def stream_job(self, job_id: str) -> pandas.DataFrame:
179
180
  """
180
181
  Streams the results of a previously started job.
181
182
 
182
183
  Parameters
183
184
  ----------
184
- graph_name
185
- The graph name.
186
185
  job_id
187
186
  Identifier for the computation.
188
187
 
@@ -191,7 +190,7 @@ class GdsArrowClient:
191
190
  DataFrame
192
191
  A pandas DataFrame containing the results of the job.
193
192
  """
194
- return JobClient().stream_results(self._flight_client, graph_name, job_id)
193
+ return JobClient().get_stream(self._flight_client, job_id)
195
194
 
196
195
  def create_graph(
197
196
  self,
@@ -415,7 +414,7 @@ class GdsArrowClient:
415
414
  job_id : str
416
415
  The job id of the process
417
416
  """
418
- self._flight_client.do_action_with_retry("v2/jobs.cancel", {"jobId": job_id})
417
+ JobClient.cancel_job(self._flight_client, job_id)
419
418
 
420
419
  def job_status(self, job_id: str) -> JobStatus:
421
420
  """
@@ -472,32 +471,21 @@ class GdsArrowClient:
472
471
 
473
472
  return self._flight_client.request_token()
474
473
 
474
+ def flight_client(self) -> AuthenticatedArrowClient:
475
+ """
476
+ Returns the underlying flight client.
477
+ """
478
+ return self._flight_client
479
+
475
480
  def _upload_data(
476
481
  self,
477
482
  endpoint: str,
478
483
  job_id: str,
479
- data: pyarrow.Table | list[pyarrow.RecordBatch] | list[pandas.DataFrame],
484
+ data: pyarrow.Table | list[pyarrow.RecordBatch] | list[pandas.DataFrame] | pandas.DataFrame,
480
485
  batch_size: int = 10000,
481
486
  progress_callback: ProgressCallback = lambda num_rows: None,
482
487
  termination_flag: TerminationFlag | None = None,
483
488
  ) -> None:
484
- if isinstance(data, pandas.DataFrame):
485
- data = [data]
486
-
487
- def map_list_entry_to_batches(e: pyarrow.RecordBatch | pandas.DataFrame) -> list[pyarrow.RecordBatch]:
488
- return [e] if isinstance(e, pyarrow.RecordBatch) else pyarrow.Table.from_pandas(e).to_batches(batch_size)
489
-
490
- batches: list[pyarrow.RecordBatch] = []
491
- match data:
492
- case list():
493
- for entry in data:
494
- partial_batches = map_list_entry_to_batches(entry)
495
- batches.extend(partial_batches)
496
- case pyarrow.Table():
497
- batches = data.to_batches(batch_size)
498
- case _:
499
- raise ValueError(f"Unsupported data type: {type(data)}")
500
-
501
489
  flight_descriptor = {
502
490
  "name": endpoint,
503
491
  "version": ArrowEndpointVersion.V2.version(),
@@ -507,11 +495,45 @@ class GdsArrowClient:
507
495
  }
508
496
  upload_descriptor = flight.FlightDescriptor.for_command(json.dumps(flight_descriptor).encode("utf-8"))
509
497
 
498
+ for batches in self._batch_groups(data, batch_size):
499
+ self._upload_batches(upload_descriptor, batches, job_id, progress_callback, termination_flag)
500
+
501
+ @staticmethod
502
+ def _batch_groups(
503
+ data: pyarrow.Table | list[pyarrow.RecordBatch] | list[pandas.DataFrame] | pandas.DataFrame,
504
+ batch_size: int,
505
+ ) -> list[list[pyarrow.RecordBatch]]:
506
+ if isinstance(data, pandas.DataFrame):
507
+ return [pyarrow.Table.from_pandas(data).to_batches(batch_size)]
508
+
509
+ if isinstance(data, pyarrow.Table):
510
+ return [data.to_batches(batch_size)]
511
+
512
+ if isinstance(data, list):
513
+ if all(isinstance(entry, pandas.DataFrame) for entry in data):
514
+ return [pyarrow.Table.from_pandas(entry).to_batches(batch_size) for entry in data]
515
+
516
+ if all(isinstance(entry, pyarrow.RecordBatch) for entry in data):
517
+ return [data]
518
+
519
+ raise ValueError(f"Unsupported data type: {type(data)}")
520
+
521
+ def _upload_batches(
522
+ self,
523
+ upload_descriptor: flight.FlightDescriptor,
524
+ batches: list[pyarrow.RecordBatch],
525
+ job_id: str,
526
+ progress_callback: ProgressCallback,
527
+ termination_flag: TerminationFlag | None,
528
+ ) -> None:
529
+ if not batches:
530
+ return
531
+
510
532
  put_stream, ack_stream = self._flight_client.do_put_with_retry(upload_descriptor, batches[0].schema)
511
533
 
512
534
  @self._flight_client._retry_config.decorator(operation_name="Upload batch", logger=self._logger)
513
- def upload_batch(p: RecordBatch) -> None:
514
- put_stream.write_batch(p)
535
+ def upload_batch(batch: RecordBatch) -> None:
536
+ put_stream.write_batch(batch)
515
537
 
516
538
  with put_stream:
517
539
  for partition in batches:
@@ -2,7 +2,7 @@ import json
2
2
  from typing import Any
3
3
 
4
4
  from pandas import ArrowDtype, DataFrame
5
- from pyarrow._flight import Ticket
5
+ from pyarrow.flight import Ticket
6
6
  from tenacity import Retrying, retry_if_result
7
7
 
8
8
  from graphdatascience.arrow_client.authenticated_flight_client import AuthenticatedArrowClient
@@ -13,6 +13,7 @@ from graphdatascience.query_runner.termination_flag import TerminationFlag
13
13
  from graphdatascience.retry_utils.retry_utils import job_wait_strategy
14
14
 
15
15
  JOB_STATUS_ENDPOINT = "v2/jobs.status"
16
+ JOBS_CANCEL_ENDPOINT = "v2/jobs.cancel"
16
17
  RESULTS_SUMMARY_ENDPOINT = "v2/results.summary"
17
18
 
18
19
 
@@ -73,6 +74,10 @@ class JobClient:
73
74
  if progress_bar:
74
75
  progress_bar.update(job_status.status, job_status.progress_percent(), job_status.sub_tasks())
75
76
 
77
+ @staticmethod
78
+ def cancel_job(client: AuthenticatedArrowClient, job_id: str) -> None:
79
+ client.do_action_with_retry(JOBS_CANCEL_ENDPOINT, JobIdConfig(jobId=job_id).dump_camel())
80
+
76
81
  @staticmethod
77
82
  def get_job_status(client: AuthenticatedArrowClient, job_id: str) -> JobStatus:
78
83
  arrow_res = client.do_action_with_retry(JOB_STATUS_ENDPOINT, JobIdConfig(jobId=job_id).dump_camel())
@@ -86,14 +91,22 @@ class JobClient:
86
91
 
87
92
  @staticmethod
88
93
  def stream_results(client: AuthenticatedArrowClient, graph_name: str, job_id: str) -> DataFrame:
94
+ export_job_id = JobClient.start_export_result(client, graph_name, job_id)
95
+
96
+ return JobClient.get_stream(client, export_job_id)
97
+
98
+ @staticmethod
99
+ def start_export_result(client: AuthenticatedArrowClient, graph_name: str, job_id: str) -> str:
89
100
  payload = {
90
101
  "graphName": graph_name,
91
102
  "jobId": job_id,
92
103
  }
93
104
 
94
105
  res = client.do_action_with_retry("v2/results.stream", payload)
95
- export_job_id = JobIdConfig(**deserialize_single(res)).job_id
106
+ return JobIdConfig(**deserialize_single(res)).job_id
96
107
 
108
+ @staticmethod
109
+ def get_stream(client: AuthenticatedArrowClient, export_job_id: str) -> DataFrame:
97
110
  stream_payload = {"version": "v2", "name": export_job_id, "body": {}}
98
111
 
99
112
  ticket = Ticket(json.dumps(stream_payload).encode("utf-8"))
@@ -1,5 +1,6 @@
1
1
  import math
2
2
  import time
3
+ from typing import Any
3
4
 
4
5
  from graphdatascience.arrow_client.authenticated_flight_client import AuthenticatedArrowClient
5
6
  from graphdatascience.arrow_client.v2.api_types import MutateResult
@@ -23,17 +24,33 @@ class MutationClient:
23
24
  process_job_id=process_job_id,
24
25
  )
25
26
 
27
+ @staticmethod
28
+ def mutate_node_properties(
29
+ client: AuthenticatedArrowClient,
30
+ result_store_job_id: str,
31
+ mutate_properties: dict[str, str] | None = None,
32
+ process_job_id: str | None = None,
33
+ ) -> MutateResult:
34
+ return MutationClient._mutate(
35
+ client=client,
36
+ result_store_job_id=result_store_job_id,
37
+ mutate_properties=mutate_properties,
38
+ process_job_id=process_job_id,
39
+ )
40
+
26
41
  @staticmethod
27
42
  def mutate_relationship_property(
28
43
  client: AuthenticatedArrowClient,
29
44
  job_id: str,
30
45
  mutate_relationship_type: str,
31
46
  mutate_property: str | None,
47
+ mutate_properties: dict[str, str] | None = None,
32
48
  ) -> MutateResult:
33
49
  return MutationClient._mutate(
34
50
  client=client,
35
51
  result_store_job_id=job_id,
36
52
  mutate_property=mutate_property,
53
+ mutate_properties=mutate_properties,
37
54
  mutate_relationship_type=mutate_relationship_type,
38
55
  )
39
56
 
@@ -43,9 +60,10 @@ class MutationClient:
43
60
  result_store_job_id: str,
44
61
  process_job_id: str | None = None,
45
62
  mutate_property: str | None = None,
63
+ mutate_properties: dict[str, str] | None = None,
46
64
  mutate_relationship_type: str | None = None,
47
65
  ) -> MutateResult:
48
- mutate_config = {
66
+ mutate_config: dict[str, Any] = {
49
67
  "jobId": result_store_job_id,
50
68
  }
51
69
  if process_job_id:
@@ -54,6 +72,8 @@ class MutationClient:
54
72
  mutate_config["mutateRelationshipType"] = mutate_relationship_type
55
73
  if mutate_property:
56
74
  mutate_config["mutateProperty"] = mutate_property
75
+ if mutate_properties:
76
+ mutate_config["mutateProperties"] = mutate_properties
57
77
 
58
78
  start_time = time.time()
59
79
  mutate_arrow_res = client.do_action_with_retry(MutationClient.MUTATE_ENDPOINT, mutate_config)
@@ -13,6 +13,9 @@ from .pipeline.pipeline_endpoints import (
13
13
  PipelineAlphaEndpoints,
14
14
  PipelineBetaEndpoints,
15
15
  PipelineEndpoints,
16
+ SessionPipelineAlphaEndpoints,
17
+ SessionPipelineBetaEndpoints,
18
+ SessionPipelineEndpoints,
16
19
  )
17
20
  from .query_runner.query_runner import QueryRunner
18
21
  from .server_version.server_version import ServerVersion
@@ -43,6 +46,17 @@ class DirectEndpoints(
43
46
  super().__init__(query_runner, namespace, server_version)
44
47
 
45
48
 
49
+ class DirectSessionEndpoints(
50
+ SingleModeAlgoEndpoints,
51
+ DirectSystemEndpoints,
52
+ DirectUtilEndpoints,
53
+ SessionPipelineEndpoints,
54
+ ConfigEndpoints,
55
+ ):
56
+ def __init__(self, query_runner: QueryRunner, namespace: str, server_version: ServerVersion):
57
+ super().__init__(query_runner, namespace, server_version)
58
+
59
+
46
60
  """
47
61
  This class should inherit endpoint classes that only expose calls of the `gds.alpha` namespace.
48
62
  Example of such endpoints: "gds.alpha.listProgress".
@@ -67,7 +81,7 @@ class AlphaEndpoints(
67
81
 
68
82
  class AlphaRemoteEndpoints(
69
83
  GraphAlphaEndpoints,
70
- PipelineAlphaEndpoints,
84
+ SessionPipelineAlphaEndpoints,
71
85
  ModelAlphaEndpoints,
72
86
  SingleModeAlphaAlgoEndpoints,
73
87
  SystemAlphaEndpoints,
@@ -80,6 +94,14 @@ class AlphaRemoteEndpoints(
80
94
  return IndirectAlphaCallBuilder(self._query_runner, f"{self._namespace}.{attr}", self._server_version)
81
95
 
82
96
 
97
+ class BetaSessionEndpoints(GraphBetaEndpoints, SessionPipelineBetaEndpoints, ModelBetaEndpoints, SystemBetaEndpoints):
98
+ def __init__(self, query_runner: QueryRunner, namespace: str, server_version: ServerVersion):
99
+ super().__init__(query_runner, namespace, server_version)
100
+
101
+ def __getattr__(self, attr: str) -> IndirectBetaCallBuilder:
102
+ return IndirectBetaCallBuilder(self._query_runner, f"{self._namespace}.{attr}", self._server_version)
103
+
104
+
83
105
  """
84
106
  This class should inherit endpoint classes that only expose calls of the `gds.beta` namespace.
85
107
  Example of such endpoints: "gds.beta.listProgress".
@@ -7,6 +7,10 @@ from ..caller_base import CallerBase
7
7
  F = TypeVar("F", bound=Callable[..., Any])
8
8
 
9
9
 
10
+ def deprecated_endpoint_message(old_endpoint: str, new_endpoint: str) -> str:
11
+ return f"Deprecated `{old_endpoint}` in favor of `{new_endpoint}`"
12
+
13
+
10
14
  def client_only_endpoint(expected_namespace_prefix: str) -> Callable[[F], F]:
11
15
  def decorator(func: F) -> F:
12
16
  wraps(func)
@@ -35,7 +39,7 @@ def client_deprecated(
35
39
 
36
40
  @wraps(func)
37
41
  def wrapper(self: CallerBase, *args: Any, **kwargs: Any) -> Any:
38
- warnings.warn(f"Deprecated `{old_endpoint}` in favor of `{new_endpoint}`", DeprecationWarning)
42
+ warnings.warn(deprecated_endpoint_message(old_endpoint, new_endpoint), DeprecationWarning)
39
43
  return func(self, *args, **kwargs)
40
44
 
41
45
  return cast(F, wrapper)
@@ -0,0 +1,76 @@
1
+ from typing import Any
2
+ from uuid import uuid4
3
+
4
+ import pandas as pd
5
+
6
+ from graphdatascience import Graph, GraphCreateResult, QueryRunner, ServerVersion
7
+ from graphdatascience.arrow_client.v2.gds_arrow_client import GdsArrowClient
8
+ from graphdatascience.graph.base_graph_proc_runner import BaseGraphProcRunner
9
+ from graphdatascience.procedure_surface.arrow.error_handler import handle_flight_error
10
+ from graphdatascience.query_runner.protocol.project_protocols import ProjectProtocol
11
+ from graphdatascience.query_runner.protocol.projection_runner import ProjectionRunner
12
+ from graphdatascience.query_runner.termination_flag import TerminationFlag
13
+ from graphdatascience.session.dbms.protocol_resolver import ProtocolVersionResolver
14
+
15
+
16
+ class GraphRemoteProcRunner(BaseGraphProcRunner):
17
+ def __init__(
18
+ self,
19
+ query_runner: QueryRunner,
20
+ arrow_client: GdsArrowClient,
21
+ db_query_runner: QueryRunner | None,
22
+ namespace: str,
23
+ server_version: ServerVersion,
24
+ ):
25
+ super().__init__(query_runner, namespace, server_version)
26
+ self._arrow_client = arrow_client
27
+ self._db_query_runner = db_query_runner
28
+
29
+ def project(
30
+ self,
31
+ graph_name: str,
32
+ query: str,
33
+ job_id: str | None = None,
34
+ query_parameters: dict[str, Any] | None = None,
35
+ concurrency: int = 4,
36
+ undirected_relationship_types: list[str] | None = None,
37
+ inverse_indexed_relationship_types: list[str] | None = None,
38
+ batch_size: int | None = None,
39
+ logging: bool = True,
40
+ ) -> GraphCreateResult:
41
+ if not self._db_query_runner:
42
+ raise Exception("Projections from a database are not supported for standalone sessions")
43
+
44
+ resolved_protocol_version = ProtocolVersionResolver(self._query_runner).resolve()
45
+
46
+ project_protocol = ProjectProtocol.select(
47
+ resolved_protocol_version,
48
+ self._arrow_client.flight_client(),
49
+ self._db_query_runner,
50
+ TerminationFlag.create(),
51
+ )
52
+
53
+ try:
54
+ result = ProjectionRunner(
55
+ project_protocol,
56
+ self._arrow_client.flight_client(),
57
+ TerminationFlag.create(),
58
+ ).run_cypher_projection(
59
+ graph_name,
60
+ query,
61
+ job_id or str(uuid4()),
62
+ query_parameters,
63
+ concurrency,
64
+ undirected_relationship_types,
65
+ inverse_indexed_relationship_types,
66
+ batch_size,
67
+ logging,
68
+ )
69
+
70
+ # explicitly specify empty dtype to avoid pandas 1.x FutureWarning
71
+ result_series = pd.Series(result) if result else pd.Series(result, dtype=object)
72
+ return GraphCreateResult(Graph(graph_name, self._query_runner), result_series)
73
+
74
+ except Exception as e:
75
+ handle_flight_error(e)
76
+ raise e # above should already raise
@@ -12,9 +12,6 @@ class Model(ABC):
12
12
  self._name = name
13
13
  self._model_api = model_api
14
14
 
15
- # TODO estimate mode, predict modes on here?
16
- # implement Cypher and Arrow info_provider and stuff
17
-
18
15
  def name(self) -> str:
19
16
  """
20
17
  Get the name of the model.
@@ -52,7 +49,7 @@ class Model(ABC):
52
49
  return self._model_api.drop(self._name, failIfMissing)
53
50
 
54
51
  def __str__(self) -> str:
55
- return f"{self.__class__.__name__}(name={self.name()}, type={self.details().type})"
52
+ return f"{self.__class__.__name__}(name={self.name()}, type={self.details().model_type})"
56
53
 
57
54
  def __repr__(self) -> str:
58
55
  return f"{self.__class__.__name__}({self.details().model_dump()})"
@@ -1,13 +1,13 @@
1
1
  import datetime
2
2
  from typing import Any
3
3
 
4
- from pydantic import BaseModel, Field
4
+ from pydantic import BaseModel
5
5
  from pydantic.alias_generators import to_camel
6
6
 
7
7
 
8
8
  class ModelDetails(BaseModel, alias_generator=to_camel):
9
- name: str = Field(alias="modelName")
10
- type: str = Field(alias="modelType")
9
+ model_name: str
10
+ model_type: str
11
11
  train_config: dict[str, Any]
12
12
  graph_schema: dict[str, Any]
13
13
  loaded: bool
@@ -0,0 +1,25 @@
1
+ import warnings
2
+
3
+ from ..error.client_only_endpoint import deprecated_endpoint_message
4
+ from ..error.illegal_attr_checker import IllegalAttrChecker
5
+ from ..error.uncallable_namespace import UncallableNamespace
6
+ from .nr_pipeline_create_runner import NRPipelineCreateRunner
7
+
8
+
9
+ class PipelineAlphaProcRunner(UncallableNamespace, IllegalAttrChecker):
10
+ @property
11
+ def nodeRegression(self) -> NRPipelineCreateRunner:
12
+ return NRPipelineCreateRunner(self._query_runner, f"{self._namespace}.nodeRegression", self._server_version)
13
+
14
+
15
+ class SessionPipelineAlphaProcRunner(PipelineAlphaProcRunner):
16
+ @property
17
+ def nodeRegression(self) -> NRPipelineCreateRunner:
18
+ warnings.warn(
19
+ deprecated_endpoint_message(
20
+ "gds.alpha.pipeline.nodeRegression.create",
21
+ "gds.v2.pipeline.node_regression.create",
22
+ ),
23
+ DeprecationWarning,
24
+ )
25
+ return super().nodeRegression
@@ -0,0 +1,79 @@
1
+ from __future__ import annotations
2
+
3
+ import warnings
4
+ from typing import Any
5
+
6
+ from pandas import DataFrame, Series
7
+
8
+ from ..error.client_only_endpoint import deprecated_endpoint_message
9
+ from ..error.illegal_attr_checker import IllegalAttrChecker
10
+ from ..error.uncallable_namespace import UncallableNamespace
11
+ from ..model.pipeline_model import PipelineModel
12
+ from .lp_pipeline_create_runner import LPPipelineCreateRunner
13
+ from .nc_pipeline_create_runner import NCPipelineCreateRunner
14
+ from .pipeline_proc_runner import PipelineProcRunner
15
+ from .training_pipeline import TrainingPipeline
16
+
17
+
18
+ class PipelineBetaProcRunner(UncallableNamespace, IllegalAttrChecker):
19
+ @property
20
+ def linkPrediction(self) -> LPPipelineCreateRunner:
21
+ return LPPipelineCreateRunner(self._query_runner, f"{self._namespace}.linkPrediction", self._server_version)
22
+
23
+ @property
24
+ def nodeClassification(self) -> NCPipelineCreateRunner:
25
+ return NCPipelineCreateRunner(self._query_runner, f"{self._namespace}.nodeClassification", self._server_version)
26
+
27
+ def list(self, pipeline: TrainingPipeline[PipelineModel] | None = None) -> DataFrame:
28
+ return PipelineProcRunner(self._query_runner, self._namespace, self._server_version).list(pipeline)
29
+
30
+ def exists(self, pipeline_name: str) -> Series[Any]:
31
+ return PipelineProcRunner(self._query_runner, self._namespace, self._server_version).exists(pipeline_name)
32
+
33
+ def drop(self, pipeline: TrainingPipeline[PipelineModel]) -> Series[Any]:
34
+ return PipelineProcRunner(self._query_runner, self._namespace, self._server_version).drop(pipeline)
35
+
36
+
37
+ class SessionPipelineBetaProcRunner(PipelineBetaProcRunner):
38
+ @property
39
+ def linkPrediction(self) -> LPPipelineCreateRunner:
40
+ warnings.warn(
41
+ deprecated_endpoint_message(
42
+ "gds.beta.pipeline.linkPrediction.create",
43
+ "gds.v2.pipeline.link_prediction.create",
44
+ ),
45
+ DeprecationWarning,
46
+ )
47
+ return super().linkPrediction
48
+
49
+ @property
50
+ def nodeClassification(self) -> NCPipelineCreateRunner:
51
+ warnings.warn(
52
+ deprecated_endpoint_message(
53
+ "gds.beta.pipeline.nodeClassification.create",
54
+ "gds.v2.pipeline.node_classification.create",
55
+ ),
56
+ DeprecationWarning,
57
+ )
58
+ return super().nodeClassification
59
+
60
+ def list(self, pipeline: TrainingPipeline[PipelineModel] | None = None) -> DataFrame:
61
+ warnings.warn(
62
+ deprecated_endpoint_message("gds.beta.pipeline.list", "gds.v2.pipeline.list"),
63
+ DeprecationWarning,
64
+ )
65
+ return super().list(pipeline)
66
+
67
+ def exists(self, pipeline_name: str) -> Series[Any]:
68
+ warnings.warn(
69
+ deprecated_endpoint_message("gds.beta.pipeline.exists", "gds.v2.pipeline.exists"),
70
+ DeprecationWarning,
71
+ )
72
+ return super().exists(pipeline_name)
73
+
74
+ def drop(self, pipeline: TrainingPipeline[PipelineModel]) -> Series[Any]:
75
+ warnings.warn(
76
+ deprecated_endpoint_message("gds.beta.pipeline.drop", "gds.v2.pipeline.drop"),
77
+ DeprecationWarning,
78
+ )
79
+ return super().drop(pipeline)