Replies: 1 comment 5 replies
-
I answered my own question. We are using Directus as the CMS to set up and seed our tables. Works perfect! |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am evaluating Supabase as an alternative to our current Firestore setup using the Flamelink CMS. We are also coming from experience with Contentful, DatoCMS and other headless CMS solutions.
We are building a storefront and would like a tool where we can seed in product information through the CMS. I'm familiar with Postgres, though have been stuck in NoSQL land for a while. I'm curious as to how you recommend we set up our DB and whether can be accomplished within the Supabase dashboard without creating our own CMS.
This is a simplified version of what I am trying to solve for: We have a list of products, product categories, tags and brands. A product can have 1 brand, 1 category and many tags.
Setup like this:
From a data entry perspective I would like to just enter all the info for a new product row, then when picking a relation, pick the Brand, Category and Tags from a list. Instead it seems like I need to look up the ID and manually enter it. Is there no way to pick from all the available IDs in the foreign table?
Similar question from the join table perspective. I'd love to just pick a list of tags and a product and have it create all the rows automatically? Can this be accomplished in the dashboard? Or will the require a custom rolled CMS solution?
We have several hundred products to seed in and it would be awesome to have a Contentful type solution powered by Postgres.
Beta Was this translation helpful? Give feedback.
All reactions