W3cubDocs

/Astro

Crystallize & Astro

Crystallize is a headless content management system for eCommerce that exposes a GraphQL API.

src/pages/index.astro
---
// Fetch your catalogue paths from Crystallize GraphQL API


import BaseLayout from '../../layouts/BaseLayout.astro';
import { createClient } from '@crystallize/js-api-client';


const apiClient = createClient({
  tenantIdentifier: 'furniture'
});


const query = `
  query getCataloguePaths{
    catalogue(language: "en", path: "/shop") {
      name
      children {
        name
        path
      }
    }
  }
`
const { data: { catalogue } } = await apiClient.catalogueApi(query)
---
<BaseLayout>
  <h1>{catalogue.name}</h1>
  <nav>
    <ul>
      {catalogue.children.map(child => (
        <li><a href={child.path}>{child.name}</a></li>
      ))}
    </ul>
  </nav>
</BaseLayout>

More CMS guides

© 2021 Fred K. Schott
Licensed under the MIT License.
https://docs.astro.build/en/guides/cms/crystallize/