ClaudeSuperPower

graphql-operations

Skill

Guide for writing GraphQL operations (queries, mutations, fragments) following best practices. Use this skill when: (1) writing GraphQL queries or mutations, (2) organizing operations with fragments, (3) optimizing data fetching patterns, (4) setting up type generation or linting, (5) reviewing oper

Install

git clone https://github.com/apollographql/skills.git ~/.claude/skills/graphql-operations

What is graphql-operations?

Guide for writing GraphQL operations (queries, mutations, fragments) following best practices. Use this skill when: (1) writing GraphQL queries or mutations, (2) organizing operations with fragments, (3) optimizing data fetching patterns, (4) setting up type generation or linting, (5) reviewing operations for efficiency.

What this can do

Capabilities declared in this component's own frontmatter — not inferred.

~81 tokens of context used while enabled, before you invoke anything

All declared tools (1)
Bash(npm:*) Bash(npx:*) Read Write Edit Glob Grep

Trust

87/100 · Excellent

2 factors scored below maximum

Documentation

README · ~2 min read

GraphQL Operations Guide

This guide covers best practices for writing GraphQL operations (queries, mutations, subscriptions) as a client developer. Well-written operations are efficient, type-safe, and maintainable.

Operation Basics

Query Structure

query GetUser($id: ID!) {
  user(id: $id) {
    id
    name
    email

Reviews

Log in to leave a review.

No reviews yet — be the first.

Explore related

Other things in this space — across every part of the ecosystem, not just skills.