I walk through some tutorials of GraphQLJS that uses graphql-tools
package, with makeExecutableSchema
command, some others that use graphql
package using a new GraphqlSchema
(as object), other with the same graphql package but the command buildSchema
.
Well, the three seems to work fine ( ok, they are just building schemas in different ways. ).
Question : Is one that is somehow related to "best practice" or results in "best performance" ? Or this is definitely something i shouldn't be worried about?
Thank you :)