You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ability to override makeExecutableSchema in the service is a great feature that opens up possibilities of doing interesting stuff like schema stitching, merging, etc. However, it would be much more useful if it allowed the response to be promise based.
/**
* Call the `makeExecutableSchema`. If you would like
* to manipulate the concatenated typeDefs, or the generated schema,
* just overwrite it in your service file.
* @param {Object} schemaDef
*/
makeExecutableSchema(schemaDef) {
return makeExecutableSchema(schemaDef);
},
The text was updated successfully, but these errors were encountered:
The ability to override makeExecutableSchema in the service is a great feature that opens up possibilities of doing interesting stuff like schema stitching, merging, etc. However, it would be much more useful if it allowed the response to be promise based.
The text was updated successfully, but these errors were encountered: