Hey everyone! I’m trying to get my head around the Saleor e-commerce system and I’m wondering if anyone has come across a good database schema or entity relationship diagram for it. I’m a visual learner and it would really help me understand how all the pieces fit together.
I’ve been poking around their docs but haven’t found exactly what I’m after. Maybe I’m just not looking in the right place? If anyone’s created their own diagram or knows where to find an official one, that would be super helpful.
I’m especially interested in seeing how they handle things like products, orders, and customer data. It would be great to get a bird’s-eye view of the whole system. Thanks in advance for any pointers!
Hey Charlie31! I’m curious about Saleor too. Have you tried playing around with a sample database? It might help you get a feel for how everything connects.
What parts of the system are you most interested in understanding? I’d love to hear more about your project. Are you building something specific with Saleor?
I wonder if anyone in the community has created a visual guide or flowchart for Saleor. That could be super helpful for visual learners like us. Maybe we could team up and create one if it doesn’t exist yet?
By the way, have you checked out any YouTube tutorials on Saleor? Sometimes seeing someone walk through the system can really help things click. Let me know if you find any good resources!
hey charlie, i’ve been dabbling with saleor. i couldnt find an official schema, but i found a github repo with a solid erd, tho its a bit old. dm me if u need the link!
I’ve worked extensively with Saleor in my recent projects. While there’s no official schema publicly available, I’ve found reverse engineering the database structure quite enlightening. My approach involved examining the Django models in Saleor’s source code, particularly in the core, product, and order apps. This method, though time-consuming, provided a comprehensive understanding of the relationships between entities. For a quicker overview, the GraphQL API documentation can also offer insights into data structures. If you’re comfortable with database tools, connecting to a Saleor instance and exploring the tables directly can be highly informative. These methods have served me well in grasping Saleor’s architecture.