GraphQL API starter with Apollo Server v5, schema-first design, and @dcyfr/ai mutation hooks.
{
"name": "@dcyfr/ai-graphql",
"version": "1.0.0",
"description": "GraphQL API starter with Apollo Server v5, schema-first design, and @dcyfr/ai mutation hooks.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest"
},
"dependencies": {
"@dcyfr/ai": "^1.0.0",
"next": "^15",
"react": "^19",
"react-dom": "^19"
}
}Clone the template
npx create-dcyfr-app my-app --template dcyfr-ai-graphqlInstall dependencies
cd my-app && npm installConfigure environment
cp .env.example .env.localStart developing
npm run dev