// src/api/article/policies/isOwner.js module.exports = (policyCtx) => if (policyCtx.state.user.id === policyCtx.request.body.data.user) return true; return false; ; Strapi auto-generates a GraphQL schema from your content-types. Setup npm run strapi install graphql Query example query articles(filters: title: contains: "Strapi" ) data id attributes title content author data attributes username
| Problem | Solution | |---------|----------| | N+1 queries | Use populate deeply or custom SQL views | | Exposed admin panel | Change /admin path, add IP whitelist | | Slow startup | Disable unused plugins, optimize DB indexes | | Over-fetching | Use GraphQL or sparse fieldsets | 13. Conclusion Strapi accelerates API development dramatically — from hours to minutes. By understanding its auto-generated endpoints , query parameters , security layers , and extensibility (custom controllers/services), you can design production-grade web APIs faster than with traditional frameworks. designing web apis with strapi pdf free download
mutation createArticle(data: title: "New API", content: "..." ) data id // src/api/article/policies/isOwner
async checkout(ctx) const products, userId = ctx.request.body; const total = await strapi.service('api::order.calc').compute(products); return strapi.entityService.create('api::order.order', data: products, total, user: userId, status: 'pending' ); By understanding its auto-generated endpoints