Created
August 18, 2017 15:29
-
-
Save wyattjoh/7c1afcb34ab4c4858cb4de8540c4fa08 to your computer and use it in GitHub Desktop.
Disable asset creation plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
resolvers: { | |
RootQuery: { | |
asset: async (obj, {id}, {loaders: {Assets}}) => { | |
if (!id) { | |
return null; | |
} | |
return Assets.getByID.load(id); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment