top | item 46376675

(no title)

calderwoodra | 2 months ago

Agreed, specifically for the file structure use-case, we were able to solve this with ltree.

discuss

order

amcvitty|2 months ago

About to embark on a similar project. Would love to hear any insights you can share!

bencyoung|1 month ago

Sorry for the delay! It's fairly simple.

1. You have a column on your objects you want secured as an LTREE[] 2. You add a GIST index on that column

The values should be the different hierarchy paths to access the object starting with a "type" e.g departments.root.deptA

When you run a query, depending on how you want to access you use a <@ query. E.g. I'm a user with root access to all depts "col <@ 'departments.root'::ltree" or I'm a user in dept A "col <@ 'departments.root.deptA'::ltree" etc