Skip to main content
Module

x/graphman/src/format.ts>PostmanItem

Quikly scaffold a postman collection for a GraphQL API. Compatible with Postman & Insomnia.
Go to Latest
interface PostmanItem
import { type PostmanItem } from "https://deno.land/x/graphman@v1.1.3/src/format.ts";

Properties

name: string
request: { method: string; header: { key: string; value: string; }[]; body: { mode: string; graphql: { query: string; variables: string; }; }; url: { raw: string; protocol: string; host: string[]; path: string[]; }; description: string | null; }
response: null[]