memgraph-ingester-tool 0.1.0__py3-none-any.whl
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.
- memgraph_ingester_tool/__init__.py +7 -0
- memgraph_ingester_tool/__main__.py +5 -0
- memgraph_ingester_tool/cli.py +704 -0
- memgraph_ingester_tool/config.py +128 -0
- memgraph_ingester_tool/db.py +65 -0
- memgraph_ingester_tool/queries/__init__.py +111 -0
- memgraph_ingester_tool/queries/code/code_callees.cypher +20 -0
- memgraph_ingester_tool/queries/code/code_callees_count.cypher +10 -0
- memgraph_ingester_tool/queries/code/code_callers.cypher +20 -0
- memgraph_ingester_tool/queries/code/code_callers_count.cypher +10 -0
- memgraph_ingester_tool/queries/code/code_file_context.cypher +68 -0
- memgraph_ingester_tool/queries/code/code_flow_context_edges.cypher +18 -0
- memgraph_ingester_tool/queries/code/code_hierarchy_ancestors.cypher +5 -0
- memgraph_ingester_tool/queries/code/code_hierarchy_class.cypher +7 -0
- memgraph_ingester_tool/queries/code/code_hierarchy_implementors.cypher +5 -0
- memgraph_ingester_tool/queries/code/code_hot_paths_fan_in.cypher +11 -0
- memgraph_ingester_tool/queries/code/code_hot_paths_fan_out.cypher +11 -0
- memgraph_ingester_tool/queries/code/code_hot_paths_largest_types.cypher +10 -0
- memgraph_ingester_tool/queries/code/code_hot_paths_longest_methods.cypher +12 -0
- memgraph_ingester_tool/queries/code/code_impact_callers.cypher +60 -0
- memgraph_ingester_tool/queries/code/code_impact_targets.cypher +16 -0
- memgraph_ingester_tool/queries/code/code_impact_text_reference.cypher +43 -0
- memgraph_ingester_tool/queries/code/code_lookup_field.cypher +12 -0
- memgraph_ingester_tool/queries/code/code_lookup_field_count.cypher +6 -0
- memgraph_ingester_tool/queries/code/code_lookup_file.cypher +12 -0
- memgraph_ingester_tool/queries/code/code_lookup_file_count.cypher +4 -0
- memgraph_ingester_tool/queries/code/code_lookup_methods.cypher +10 -0
- memgraph_ingester_tool/queries/code/code_lookup_methods_count.cypher +6 -0
- memgraph_ingester_tool/queries/code/code_lookup_type.cypher +11 -0
- memgraph_ingester_tool/queries/code/code_lookup_type_count.cypher +6 -0
- memgraph_ingester_tool/queries/code/code_lookup_type_members_fields.cypher +5 -0
- memgraph_ingester_tool/queries/code/code_lookup_type_members_methods.cypher +5 -0
- memgraph_ingester_tool/queries/code/code_operation_hot_paths.cypher +40 -0
- memgraph_ingester_tool/queries/code/code_orientation_cross_owner_calls.cypher +9 -0
- memgraph_ingester_tool/queries/code/code_orientation_languages.cypher +4 -0
- memgraph_ingester_tool/queries/code/code_orientation_largest_types.cypher +8 -0
- memgraph_ingester_tool/queries/code/code_orientation_packages.cypher +6 -0
- memgraph_ingester_tool/queries/code/code_quality_stats.cypher +75 -0
- memgraph_ingester_tool/queries/code/code_resource_risk_scan.cypher +10 -0
- memgraph_ingester_tool/queries/code/code_search.cypher +37 -0
- memgraph_ingester_tool/queries/code/code_test_files.cypher +13 -0
- memgraph_ingester_tool/queries/code/code_test_methods.cypher +30 -0
- memgraph_ingester_tool/queries/code/code_test_production_callees.cypher +25 -0
- memgraph_ingester_tool/queries/code/lexical_chunk_rows.cypher +40 -0
- memgraph_ingester_tool/queries/code/server_status_inventory.cypher +9 -0
- memgraph_ingester_tool/queries/code/server_status_languages.cypher +3 -0
- memgraph_ingester_tool/queries/code/server_status_memories.cypher +5 -0
- memgraph_ingester_tool/queries/memory/memory_delete_orphan_refs.cypher +7 -0
- memgraph_ingester_tool/queries/memory/memory_delete_read.cypher +10 -0
- memgraph_ingester_tool/queries/memory/memory_delete_write.cypher +7 -0
- memgraph_ingester_tool/queries/memory/memory_get.cypher +12 -0
- memgraph_ingester_tool/queries/memory/memory_link_code_ref.cypher +8 -0
- memgraph_ingester_tool/queries/memory/memory_orientation_active_tasks.cypher +4 -0
- memgraph_ingester_tool/queries/memory/memory_orientation_open_findings.cypher +4 -0
- memgraph_ingester_tool/queries/memory/memory_orientation_open_questions.cypher +4 -0
- memgraph_ingester_tool/queries/memory/memory_orientation_open_risks.cypher +4 -0
- memgraph_ingester_tool/queries/memory/memory_orientation_rules.cypher +3 -0
- memgraph_ingester_tool/queries/memory/memory_refresh_chunk.cypher +12 -0
- memgraph_ingester_tool/queries/memory/memory_refresh_embeddings_embed.cypher +9 -0
- memgraph_ingester_tool/queries/memory/memory_refresh_embeddings_mark.cypher +7 -0
- memgraph_ingester_tool/queries/memory/memory_refresh_embeddings_pending.cypher +11 -0
- memgraph_ingester_tool/queries/memory/memory_search.cypher +11 -0
- memgraph_ingester_tool/queries/memory/memory_update_status.cypher +3 -0
- memgraph_ingester_tool/queries/memory/memory_upsert.cypher +7 -0
- memgraph_ingester_tool/schema.py +106 -0
- memgraph_ingester_tool/tools.py +3098 -0
- memgraph_ingester_tool-0.1.0.dist-info/METADATA +191 -0
- memgraph_ingester_tool-0.1.0.dist-info/RECORD +71 -0
- memgraph_ingester_tool-0.1.0.dist-info/WHEEL +4 -0
- memgraph_ingester_tool-0.1.0.dist-info/entry_points.txt +2 -0
- memgraph_ingester_tool-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"""memgraph-ingester-tool — standalone query tools for Memgraph knowledge graphs."""
|
|
2
|
+
|
|
3
|
+
from memgraph_ingester_tool.config import ToolConfig
|
|
4
|
+
from memgraph_ingester_tool.db import ToolClient, ToolError
|
|
5
|
+
from memgraph_ingester_tool.tools import MemgraphTools
|
|
6
|
+
|
|
7
|
+
__all__ = ["MemgraphTools", "ToolClient", "ToolConfig", "ToolError"]
|