gramps-graphql/data-source-base

View on GitHub
src/context.js

Summary

Maintainability
A
0 mins
Test Coverage
// TODO Add methods to access your data.
export default {
  getById: id => ({
    id,
    name: 'GrAMPS GraphQL Data Source Base',
    lucky_numbers: [1, 2, 3, 5, 8, 13, 21],
  }),
};