graphql-schema-generator
SolidGenerate GraphQL schemas from data models with resolver stubs and federation support
API & Backend 814 stars
53 forks Updated today MIT
Install
Quality Score: 95/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# GraphQL Schema Generator Skill
## Overview
Generates GraphQL SDL schemas from data models with type inference, resolver stub generation, schema validation, and Apollo Federation support.
## Capabilities
- Generate GraphQL SDL from data models
- Type inference from existing data structures
- Resolver stub generation
- Schema validation and linting
- Apollo Federation support
- Subscription type generation
- Input type and mutation generation
## Target Processes
- api-design-specification
## Input Schema
```json
{
"type": "object",
"required": ["dataModels"],
"properties": {
"dataModels": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"fields": { "type": "array" },
"relationships": { "type": "array" }
}
}
},
"outputPath": {
"type": "string",
"description": "Output schema file path"
},
"options": {
"type": "object",
"properties": {
"generateResolvers": {
"type": "boolean",
"default": true
},
"federation": {
"type": "boolean",
"default": false
},
"generateSubscriptions": {
"type": "boolean",
"default": false
},
"generateInputTypes": {
"type": "boolean",
"default": true
}
}
}
}
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Integrates with
Related Skills
API & Backend Featured
api-endpoint-builder
Builds production-ready REST API endpoints with validation, error handling, authentication, and documentation. Follows best practices for security and scalability.
38,979 Updated today
sickn33 API & Backend Featured
database
Database development and operations workflow covering SQL, NoSQL, database design, migrations, optimization, and data engineering.
38,979 Updated today
sickn33 API & Backend Featured
firebase
Firebase gives you a complete backend in minutes - auth, database, storage, functions, hosting. But the ease of setup hides real complexity. Security rules are your last line of defense, and they're often wrong.
38,979 Updated today
sickn33