graphql-and-hidden-parameters

Installation
SKILL.md

SKILL: GraphQL and Hidden Parameters — Introspection, Batching, and Undocumented Fields

AI LOAD INSTRUCTION: Use this skill when GraphQL exists or when REST documentation suggests optional, deprecated, or undocumented fields. Focus on schema discovery, hidden parameter abuse, and batching as a force multiplier.

1. GRAPHQL FIRST PASS

query { __typename }
query {
  __schema {
    types { name }
  }
}

If introspection is restricted, continue with:

Installs
1.7K
GitHub Stars
1.3K
First Seen
Apr 8, 2026
graphql-and-hidden-parameters — yaklang/hack-skills