© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
Drizzle TeamDT
Drizzle Team•16mo ago
Thomsr

Is there a way to create this query in drizzle?

Hi, I have this query for my mobile app with expo and react native. I need to have a recursive query, but cant seem to find how to create one in drizzle.
    WITH RECURSIVE LabelHierarchy AS (
      SELECT id, name, parent_id
      FROM labels
      WHERE id = ${labelId}
      UNION ALL
      SELECT l.id, l.name, l.parent_id
      FROM labels l
      INNER JOIN LabelHierarchy lh ON lh.id = l.parent_id
    )
    SELECT e.id, e.exercise_name
    FROM exercises e
    INNER JOIN exercise_label el ON e.id = el.exercise_id
    INNER JOIN LabelHierarchy lh ON el.label_id = lh.id;
    WITH RECURSIVE LabelHierarchy AS (
      SELECT id, name, parent_id
      FROM labels
      WHERE id = ${labelId}
      UNION ALL
      SELECT l.id, l.name, l.parent_id
      FROM labels l
      INNER JOIN LabelHierarchy lh ON lh.id = l.parent_id
    )
    SELECT e.id, e.exercise_name
    FROM exercises e
    INNER JOIN exercise_label el ON e.id = el.exercise_id
    INNER JOIN LabelHierarchy lh ON el.label_id = lh.id;


Please let me know if it is possible to rewrite this with drizzle :)

Thanks!
Drizzle TeamJoin
The official Discord for all Drizzle related projects, such as Drizzle ORM, Drizzle Kit, Drizzle Studio and more!
11,879Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

is there a way to use Redis in drizzle
Drizzle TeamDTDrizzle Team / help
2y ago
Is there a way to create check constraint?
Drizzle TeamDTDrizzle Team / help
3y ago
is there a way to create virtual columns in postgres?
Drizzle TeamDTDrizzle Team / help
3y ago
how to model this query in drizzle
Drizzle TeamDTDrizzle Team / help
12mo ago