You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spanner Graph introduces ISO GQL and SQL/PGQ subsets to Cloud Spanner.
It is coexists with queries and DDLs of GoogleSQL, so I think it is better to be implemented by memefish.
-- Use Graph pattern matching to identify Account nodes to update:
UPDATE Account SET is_blocked = false
WHERE id IN {
GRAPH FinGraph
MATCH (a:Account WHERE a.id = 1)-[:TRANSFERS]->{1,2}(b:Account)
RETURN b.id
}
Spanner Graph introduces ISO GQL and SQL/PGQ subsets to Cloud Spanner.
It is coexists with queries and DDLs of GoogleSQL, so I think it is better to be implemented by memefish.
{CREATE | DROP} PROPERTY GRAPH
DDL statementsGRAPH_TABLE
operatorIN { gql }
syntaxTop level GQL query syntax
The text was updated successfully, but these errors were encountered: