import * as PersonApi from '../api/person.api' | |
export default { | |
queries: {}, | |
mutations: { | |
async createPerson(parent, args) { | |
const person = await PersonApi.create(args) | |
return person | |
} | |
}, | |
subscriptions: {}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment