What problem does it solve? Running graph analytics normally requires exporting data out of Snowflake into a separate graph database. This Skill guides an AI agent through using the Neo4j Graph Analytics Snowflake Native App so algorithms like PageRank, Louvain, and Node2Vec run directly inside Snowflake, with results written back to Snowflake tables. ## Core Features & Use Cases - End-to-end workflow guidance: Covers the full explore → prepare projection views → project-compute-write → inspect flow, including the strict column casting rules (NODEID, SOURCENODEID, TARGETNODEID) the graph engine requires. - Exact SQL CALL syntax for 25+ algorithms: Community detection, centrality, pathfinding, similarity, node embeddings, and GraphSAGE model training/prediction, with a detailed parameter reference in references/algorithms.md. - Setup and troubleshooting: Marketplace installation, privilege grants, compute pool selection, orientation rules, and fixes for common errors like missing key columns or unsupported property types. - Use Case: A data engineer wants to detect fraud rings in a Snowflake transactions table. The Skill helps create node and relationship views with correct casts, run Louvain with UNDIRECTED orientation, and join results back to source tables for readable names. ## Quick Start Ask the agent to run the WCC algorithm on your Snowflake tables to find connected components, starting by inspecting the table DDLs and creating projection views.