Skip to content

Instantly share code, notes, and snippets.

@antonkalik
Created August 30, 2022 18:23
Show Gist options
  • Save antonkalik/405ce30121fd713dcfabe3a046303be1 to your computer and use it in GitHub Desktop.
Save antonkalik/405ce30121fd713dcfabe3a046303be1 to your computer and use it in GitHub Desktop.
const fakeData = {
id: 223421,
label: 'Some Label From External',
};
module.exports = {
Query: {
getItemsExternal: () => [fakeData],
},
Mutation: {
updateDataExternal: (_, { label }) => {
return {
...fakeData,
label,
};
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment