Skip to content

Instantly share code, notes, and snippets.

@eladroz
Created April 4, 2022 08:24
Show Gist options
  • Save eladroz/42b5e6922ad1495f427827dbb2ee5e9d to your computer and use it in GitHub Desktop.
Save eladroz/42b5e6922ad1495f427827dbb2ee5e9d to your computer and use it in GitHub Desktop.
Getting content from Contentful in a SvelteKit JSON resource
import { client } from '$lib/contentfulClient';
export async function get({ params }) {
const blog = await client.getEntries({
'fields.slug': params.slug,
content_type: 'blog-post'
});
if (blog?.items?.length > 0) {
return {
body: {
blog: blog.items[0],
}
};
}
return {
status: 404
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment