Socket
Socket
Sign inDemoInstall

graphql-codegen-compiler

Package Overview
Dependencies
Maintainers
1
Versions
408
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-codegen-compiler

GraphQL code generator compiler


Version published
Weekly downloads
1.9K
decreased by-17.01%
Maintainers
1
Weekly downloads
 
Created
Source

graphql-codegen-compiler

This package compiles the output of graphql-codegen-core along with GeneratorConfig and Settings, and compiles the template, returns an array of FileOutput.

The main entry point of the package is compile method, and you can import it directly and use it without the CLI package.

We are using Handlebars as template compiler, with some custom Handlebars helpers that helps to generate GraphQL related code easily.

toPrimitive(type: string)

Accepts a string with a GraphQL type and converts it to the language primitive as specified in the template config, if the type isn't a primitive - it just returns it.

Example:

type MyType {
  f1: String
}
{{#each types}}
    Type {{ name }} fields:
    {{#each fields}}
        Field {{ name }} type is: {{ toPrimitive type }}
    {{/each}}
{{/each}}

Output:

Type MyType fields:
    Field f1 type is: string

ifDirective(context: any, directiveName: string)

Special GraphQL helper that accepts any GraphQL entity, and extracts the GraphQL Directives of the entity.

The compiled context is the arguments values of the entity.

Example:

type MyType @addName(name: "Dotan") {
  f1: String
}

directive @addName(name: String!) on OBJECT
{{#each types}}
    Type name: {{ name }}
    Extra name? {{#ifDirective this "appName"}}Yes! and the name is: {{ name }}{{/ifDirective}}

{{/each}}

Output:

Type name: MyType
Extra name? Yes! and the name is: Dotan

unlessDirective(context: any, directiveName: string)

The opposite of ifDirective.

Example:

type MyType {
  f1: String
}

directive @addName(name: String!) on OBJECT
{{#each types}}
    Type name: {{ name }}
    Extra name? {{#unlessDirective this "appName"}}No!{{/unlessDirective}}

{{/each}}

Output:

Type name: MyType
Extra name? No!

toComment(str: string)

Prints a string as comment with /* ... */, and also trims multiple lines into a single line.

Useful for description field of GraphQL entities.

Example:

{{toComment "hi"}}

Output:

/* hi */

Other Template Helpers

times(count: number)

Returns the template child string count times, the execution context of the child content is the i/times.

Example:

{{#times 3}}
    Hello {{ this }}!
{{/times}}

Output:

Hello 0
Hello 1
Hello 2

for(from: number, to: number, incr: number)

Similar to for loop.

Returns the template child string amount of times according to from to to by increasing incr, the execution context of the child content is the i/times.

Example:

{{#for 3 6 1}}
    Hello {{ this }}!
{{/times}}

Output:

Hello 3
Hello 4
Hello 5

limitedEach(from: number, to: number, incr: number)

Similar to for loop.

Returns the template child string amount of times according to from to to by increasing incr, the execution context of the child content is the i/times.

Example:

{{#for 3 6 1}}
    Hello {{ this }}!
{{/times}}

Output:

Hello 3
Hello 4
Hello 5

toLowerCase(str: string)

Return a lowercase version of the string.

Example:

{{toLowerCase "Hello" }}

Output:

hello

toUpperCase(str: string)

Return an uppercase version of the string.

Example:

{{toUpperCase "Hello" }}

Output:

HELLO

toSnakeCase(str: string)

Return an snake case version of the string.

Example:

{{toSnakeCase "doSomething" }}

Output:

do-something

toTitleCase(str: string)

Return an title case version of the string.

Example:

{{toTitleCase "doSomething" }}

Output:

Do Something

toCamelCase(str: string)

Return an camel case version of the string.

Example:

{{toCamelCase "DoSomething" }}

Output:

doSomething

multilineString(str: string)

Converts a multiline string into a string with line breaks, to prevent code from being broken.

Example:

{{toCamelCase "myString
other line" }}

Output:

"myString" + 
"other line"

FAQs

Package last updated on 18 Jul 2017

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