name: graphql-and-hidden-parameters
description: >-
GraphQL and hidden parameter testing playbook. Use when exploring introspection, batching, undocumented fields, hidden parameters, schema abuse, and GraphQL authorization gaps.
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---2name: yliken-ai4-graphql-and-hidden-parameters3description: ---4---5---6name: graphql-and-hidden-parameters7description: >-8 GraphQL and hidden parameter testing playbook. Use when exploring introspection, batching, undocumented fields, hidden parameters, schema abuse, and GraphQL authorization gaps.9---1011# SKILL: GraphQL and Hidden Parameters — Introspection, Batching, and Undocumented Fields1213> **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.1415## 1. GRAPHQL FIRST PASS1617```graphql18query { __typename }19query {20 __schema {21 types { name }22 }23}24```2526If introspection is restricted, continue with:2728- field suggestions and error-based discovery29- known type probes like `__type(name: "User")`30- JS and mobile bundle route extraction3132## 2. HIGH-VALUE GRAPHQL TESTS3334| Theme | Example |35|---|---|36| IDOR | `user(id: "victim")` |37| batching | array of login or object fetch operations |38| hidden fields | admin-only fields exposed in type definitions |39| nested authz gaps | related object fields with weaker checks |4041## 3. HIDDEN PARAMETER DISCOVERY4243Look for:4445- fields present in admin docs but not public docs46- `additionalProperties` or permissive schemas47- frontend code using richer request bodies than visible UI controls48- mobile endpoints carrying role, org, feature-flag, or internal filter fields4950## 4. NEXT ROUTING5152- If hidden fields affect privilege: [api authorization and bola](../api-authorization-and-bola/SKILL.md)53- If GraphQL batching changes auth or rate behavior: [api auth and jwt abuse](../api-auth-and-jwt-abuse/SKILL.md)54- If endpoint discovery is incomplete: [api recon and docs](../api-recon-and-docs/SKILL.md)5556---57> Source: [Yliken/ai4](https://github.com/Yliken/ai4) — distributed by [TomeVault](https://tomevault.io).58<!-- tomevault:4.0:skill_md:2026-06-15 -->
Run npx skillmds@latest add tomevault-io/yliken-ai4-graphql-and-hidden-parameters in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
--- It is listed under Integrations & APIs on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.