|
|
|
|
|
by linkdd
1909 days ago
|
|
What I call a Service Oriented Architecture is much like the Microservice architecture but without worrying about the "micro" aspect. Typical architecture in our projects: - User Management Service with ORY[1]
- Payment Service with Stripe[2]
- Hasura[3] for the storage layer
- GraphQL backend querying the above services
- Frontend querying the GraphQL backend Basically, we tend to delegate the boilerplate to third-parties (self-hosted whenever it's possible) and only implement the business logic ourselves. [1] - https://ory.sh [2] - https://stripe.com [3] - https://hasura.io |
|