Skip to content

Instantly share code, notes, and snippets.

@samueljoli
Created October 5, 2017 00:34
Show Gist options
  • Save samueljoli/94faeb165190d437ae7665cdc4b6d575 to your computer and use it in GitHub Desktop.
Save samueljoli/94faeb165190d437ae7665cdc4b6d575 to your computer and use it in GitHub Desktop.
Joi2GQL example 2
const Film = Joi2GQL.transmuteType(joiSchema, config);
const graphqlSchema = {
query: {
film: Film
},
mutation: {
update: Film,
delete: Film
},
subscription: {
film: Film
}
};
const GraphQLSchema = Joi2GQL.transmuteSchema(graphqlSchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment