UNPKG

visual-graphql

Version:

A lightweight GraphQL schema visualization tool built with SolidJS

18 lines (16 loc) 453 B
import { Component } from 'solid-js'; export interface VoyagerDisplayOptions { rootType?: string; skipRelay?: boolean; skipDeprecated?: boolean; showLeafFields?: boolean; sortByAlphabet?: boolean; hideRoot?: boolean; } export interface VoyagerProps { introspection: any; displayOptions?: VoyagerDisplayOptions; hideDocs?: boolean; hideSettings?: boolean; } export declare const Voyager: Component<VoyagerProps>;