/getObjectFromCosmic.js Secret
Last active
August 30, 2018 00:16
Star
You must be signed in to star a gist
getObject() from Cosmic JS
This file contains 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
async getResObject() { | |
const slug = 'insertObjectSlugHere' | |
try { | |
const res = await bucket.getObject({ slug }) | |
this.resObject = res | |
return | |
}) | |
} | |
catch(e) { | |
console.log('Error getting Object from Cosmic JS', e) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment