graphql-fundamentals

Installation
SKILL.md

GraphQL Fundamentals Skill

Master the building blocks of GraphQL APIs

Overview

This skill covers the essential GraphQL concepts every developer needs. From type definitions to query operations, you'll learn the foundation for building GraphQL APIs.


Quick Reference

Concept Syntax Example
Scalar String, Int, Float, Boolean, ID name: String!
Object type Name { fields } type User { id: ID! }
Input input Name { fields } input CreateUserInput { name: String! }
Enum enum Name { VALUES } enum Status { ACTIVE INACTIVE }
List [Type] or [Type!]! tags: [String!]!
Related skills
Installs
7
GitHub Stars
1
First Seen
Jan 23, 2026