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
10
GitHub Stars
6
First Seen
Jul 21, 2026
graphql-and-hidden-parameters — strivepan-svg/hack-skills