GraphQL introspection
WikiParfum exposes a rich GraphQL schema that evolves over time. Rather than relying solely on static documentation, developers are encouraged to explore the API dynamically using GraphQL introspection.How to explore
Most GraphQL clients support schema introspection out of the box. By connecting to the WikiParfum endpoint with your API key, you can:- Browse all available queries and types
- Inspect available fields and relationships
- Understand required and optional arguments
- Explore response structures in real time
Recommended tools
| Tool | Description |
|---|---|
| Postman | Full-featured API client with built-in GraphQL support and schema exploration |
| Apollo Studio | GraphQL IDE with schema browser, query builder, and history |
| GraphiQL | Lightweight in-browser GraphQL IDE with autocomplete and docs panel |
Connecting to the endpoint
Configure your GraphQL client with:- Endpoint:
https://api.wikiparfum.com/graphql - Method:
POST - Header:
Authorization: <YOUR_API_KEY>

