--
app.config.js
yarn install
yarn dev
To query data from the GraphQL layer, define a constant with the name of query
in your Svelte/MDsveX file:
<script>
const query = `
query SITE_METADATA {
meta {
title
}
}
`
</script>
<svelte:head>
<title>{query.meta.title}</title>
</svelte:head>
Data will then be populated into the variable before further processing.
All files related to the GraphQL layer can be found in support and can be modified to your liking. Please note the GraphQL Layer is a work-in-progress and will be updated as necessary.