Skip to content

Instantly share code, notes, and snippets.

@antonkalik
Created August 30, 2022 18:26
Show Gist options
  • Save antonkalik/00ce2e8727ac04878544f634633efe05 to your computer and use it in GitHub Desktop.
Save antonkalik/00ce2e8727ac04878544f634633efe05 to your computer and use it in GitHub Desktop.
const fakeData = {
id: 4838745,
value: 'Some Random String',
};
module.exports = {
Query: {
getFakeDataExample: () => fakeData,
},
Mutation: {
updateFakeData: (_, { value }) => {
return {
...fakeData,
value,
};
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment