gramps-graphql/gramps

View on GitHub
example/data-source--REST/src/resolvers.js

Summary

Maintainability
A
0 mins
Test Coverage
export default {
  Query: {
    searchMoviesByTitle: (rootValue, { title, apiKey }, context) =>
      context.model.searchMoviesByTitle({ title, apiKey }),
  },
};