Fetch a single page
shoppy.pages.get(idOrHandle)
idOrHandle
string
ShopifyPage
| null
const page = await shoppy.pages.get('about-us') if (page) { console.log(page.title) }
const page = await shoppy.pages.get( 'gid://shopify/Page/123456789' )
const page = await shoppy.pages .select(['title', 'body', 'seo']) .get('contact')
const page = await shoppy.pages.get('non-existent') if (!page) { console.log('Page not found') }