What problem does it solve? Writing correct BigQuery graph queries and property graph schemas requires deep knowledge of the GoogleSQL GQL standard, GRAPH_TABLE integration, GRAPH_EXPAND semantics, and schema design pitfalls like column collisions and unsupported topologies. This Skill encodes those rules so generated queries and DDL are syntactically correct and performant. ## Core Features & Use Cases - GQL Query Generation: Produces BigQuery GoogleSQL GQL queries with correct pattern matching, path variables, quantifiers, and output formatting (TO_JSON for visualization, plain properties for tabular results). - Semantic Graph Querying: Guides use of the GRAPH_EXPAND table-valued function and the mandatory AGG() wrapper for measure columns. - Schema DDL Advisory: Helps design CREATE PROPERTY GRAPH statements with scoped properties, safe aliases, PK/FK constraints, and measures while avoiding GRAPH_EXPAND limitations such as cycles and disconnected graphs. - Use Case: Ask for the shortest transfer path between two accounts, and receive a valid ANY SHORTEST GQL query with proper label usage and a LIMIT clause. ## Quick Start Ask the assistant to write a BigQuery GQL query that finds all accounts connected to a given person within three hops.