graphql

Installation
SKILL.md

GraphQL

Schema design, queries, mutations, and tooling.

Schema Definition

# Type definitions
type User {
  id: ID!
  email: String!
  name: String
  posts: [Post!]!
  createdAt: DateTime!
}

type Post {
  id: ID!
  title: String!
Related skills

More from 1mangesh1/dev-skills-collection

Installs
4
GitHub Stars
3
First Seen
Feb 21, 2026