Introduction
Bark is an implementation of the Materialized Path pattern that allows you to easily create and interact with tree structures in Prisma.
What is Materialized Path?
What are the use cases?
.
├── users/
│ ├── alison/
│ │ ├── photos/
│ │ │ ├── img-01.jpg
│ │ │ └── img-02.jpg
│ │ └── website/
│ │ └── index.html
│ └── bob/
│ └── documents/
│ └── resume-2023.pdf
├── sys/
│ ├── kernel
│ └── dev
└── etcBark's implementation of Materialized Path
Last updated