Socket
Socket
Sign inDemoInstall

@replit/clui-gql

Package Overview
Dependencies
Maintainers
6
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@replit/clui-gql

A utility to transform GraphQL introspection type into a CLUI command


Version published
Weekly downloads
16
increased by128.57%
Maintainers
6
Weekly downloads
 
Created
Source

CLUI GraphQL

A utility to transform GraphQL introspection type into a CLUI command

Install

npm install @replit/clui-gql

Usage


import { toCommand } from '@replit/clui-gql';

const command = toCommand({
  // 'query' or 'mutation'
  operation: 'query',

  // GraphQL introspection data for type
  type: TypeInfo,

  // the path at wich the above type appears in the graph
  mountPath: ['cli', 'admin'],

  // Return a `run` function for given command
  runFn: (gqlOptions) => (runOptions) => doSomehtingWith({ gqlOptions, runOptions }),

  // Configure fields and fragments for GraphQL operation
  outputFn: () => ({
    fields: '...Output',
    fragments: `
      fragment Output on YourOutputTypes {
        ...on SuccessOutput {
          message
        }
        ...on ErrorOutput {
          error
        }
      }`,
  }),
});

FAQs

Package last updated on 21 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc