DEV Community

Discussion on: How YOU can use Nest to build a GraphQL API

Collapse
 
felzan profile image
Luís Felipe Zanatto Alves

Very good!
I followed this and is working just fine! I'm going to create a BFF (calling REST APIs) with this pattern and i fill a lacking of best practices to organize the Schemas and the http calls. Do you have some recommendation?

Collapse
 
softchris profile image
Chris Noring

the recommended practice is to have one schema per feature, so one for products, one for users etc. Any schema ending in .graphql will be automatically found and merged into one schema. Hope that's what you were looking for :)