Insights
Small, shareable bits of code and config—think GitHub Gist, but on my site. Copy, adapt, and go.
Copy-paste recipes, scripts, and config snippets
summarize-sitecore-content-with-graphql-openai.ts
// app/api/summarize-sitecore/route.ts import { NextRequest, NextResponse } from "next/server"; const QUERY = ` query ArticleByPath($path: String!, $language: String!) { item(path: $path, language: $language) { title: field(name: "Title") { value } body: field(name: "Content") { value } }