Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Proscom/GraphQLCLI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphQLCLI

Platforms

Command line tool to generate GraphQL models using scheme.

Based on template language Stencil.

Template

The arguments should be passed to template are GraphQL objects.

Object

  • name - String
  • kind - String (OBJECT, ENUM, INPUT_OBJECT)
  • description - String (description of object)
  • fields - [Field]
  • inputFields - [Field]
  • enumValues - [Enum]

Field

  • name - String
  • replaceName - String (can be equal name)
  • description - String
  • arguments - [Argument]
  • type - Type
  • finalType - Type
  • isList - Bool
  • isNonNull - Bool

Argument

  • name - String
  • description - String
  • type - Type
  • finalType - Type
  • isList - Bool

Type

  • kind - String
  • name - String
  • replaceName - String (can be equal name)
  • ofType - Type
  • isScalar - Bool

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages