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
More from pluginagentmarketplace/custom-plugin-graphql
graphql-codegen
Generate TypeScript types and React hooks from GraphQL schemas
18graphql-security
Secure GraphQL APIs - authentication, authorization, rate limiting, and validation
10graphql-apollo-client
Build React apps with Apollo Client - queries, mutations, cache, and subscriptions
10graphql-apollo-server
Build production GraphQL servers with Apollo Server, plugins, and federation
6graphql-resolvers
Write efficient resolvers with DataLoader, batching, and N+1 prevention
5graphql-schema-design
Design production-grade GraphQL schemas with best practices and patterns
5