Saqib Ali

@gql

0 Following
0 Followers
TinkerGQL: Mixing declarative GQL with imperative Gremlin.

Pure Gremlin:

g.V().has('airport', 'code', 'YVR').
repeat(out('route').simplePath()).
emit(loops().is(gte(2))).
times(4).
groupcount().by('code').
order(local).by(values, desc).
limit(local, 10)


Gremlin with TinkerGQL

g.match("MATCH (a:airport {code: 'YVR'})-[: route]->{2,4} (b:airport)").
select('b').
groupCount().by('code'),
order(local).by(values, desc).
limit(local, 10)

The walk became a pattern. The computation stayed in Gremlin.

https://www.youtube.com/watch?v=VR91c8IBSQI
youtube.com

- YouTube

Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.

The #PostgreSQL team has serious concerns about unresolved #SQL/PGQ design and dependency issues in #Postgresql 19, including orphaned metadata, inconsistent label/property behavior, and pg_dump problems. They recommend reverting #SQL/PGQ from #PostgreSQL 19 so the issues can be properly resolved for #PostgreSQL 20 without release and compatibility pressure.:
Open Graph Image
www.postgresql.org

Re: PGQ catalog representation and pg_dump support

On Tue, Sep 1, 2026 at 11:20 AM Ashutosh Bapat <ashutosh.bapat.oss@gmail.com> wrote: > > > However, consider the case below: …