graphql-implementation

Installation
SKILL.md

GraphQL Implementation

Build GraphQL APIs with proper schema design, resolvers, and performance optimization.

Schema Definition

type User {
  id: ID!
  name: String!
  email: String!
  posts(limit: Int = 10): [Post!]!
}

type Post {
  id: ID!
  title: String!
  content: String!
  author: User!
Related skills

More from secondsky/claude-skills

Installs
170
GitHub Stars
143
First Seen
Jan 22, 2026