0.2.1 • Published 3 years ago

graphql-typeop v0.2.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

graphql-typeop

npm version pipeline status

Introduction

This library introduces a new way of controlling and defining GraphQL return types: via TypeScript classes. The approach is strongly inspired by the code-first approach for using GraphQL in Nest.js server applications used in @nestjs/graphql by Kamil Mysliwiec.

Installation

npm install graphql-typeop

Usage

Decorators

The following decorators are provided by this package: @ObjectType(), @Field(), @ArgsType and @Arg.

@ObjectType()
class DetailPost {
    id!: number;
    content!: string;
}

@ArgsType()
class GetPostsArgs {
    page?: number;
    size?: number;
}
query getPosts($page: Int, $size: Int) {
    posts(page: $page, size: $size) {
        id
        content
    }
}

@ObjectType()

This class decorator can be used to mark a class as describing the selection set of a GraphQL operation. This decorator is only informal and provides no standalone functionality. However, it is read by the TypeScript transformer (see below) and can be used to achieve a more concise syntax.

@Field()

Every property which belongs to an @ObjectType class and represents a GraphQL argument needs to be annotated with @Field to ensure that it is included the created GraphQL DocumentNodes.

The decorator accepts two optional parameters:

Type

The Type of the field. Can be passed as a TypeScript Class. If no type is passed, it is derived from the TypeScript metadata. Note: this is not possible for array types as TypeScript handles these as Objects.

Options

The options for the field. See reflection.util.ts.

@ArgsType()

This class decorator can be used to mark a class as describing the selection set of a GraphQL operation. This decorator is only informal and provides no standalone functionality. However, it is read by the TypeScript transformer (see below) and can be used to achieve a more concise syntax.

@Arg()

Every property which belongs to an @ArgsType class and represents a GraphQL argument needs to be annotated with @Arg to ensure that it is included the created GraphQL DocumentNodes. The decorator accepts two optional parameters:

Type

The Type of the argument. Can be passed as a TypeScript Class. If no type is passed, it is derived from the TypeScript metadata. Note: this is not possible for array types as TypeScript handles these as Objects.

Options

The options for the argument. See reflection.util.ts.

DocumentBuilder

This package provides builders for all types of GraphQL operations. They all return a GraphQL DocumentNode which can be passed to many GraphQL client implementations such as @apollo/client.

buildQuery()

buildMutation()

buildSubscription()

TypeScript Transformer

The TypeScript transformer can be used to simplify the syntax required for ObjectType and ArgsType definitions. If it is active, it is not required to mark each property of classes annotated with @ObjectType and @ArgsType with the respective property decorator. The transformer takes over this task.

Read more on TypeScript transformers here.

GraphQL Code Generator Plugin

0.2.1

3 years ago

0.2.0

3 years ago

0.2.0-SNAPSHOTJ

3 years ago

0.2.0-SNAPSHOTH

3 years ago

0.2.0-SNAPSHOTI

3 years ago

0.2.0-SNAPSHOTG

3 years ago

0.2.0-SNAPSHOTE

3 years ago

0.2.0-SNAPSHOTF

3 years ago

0.1.0-SNAPSHOTH

3 years ago

0.2.0-SNAPSHOTC

3 years ago

0.1.0-SNAPSHOTG

3 years ago

0.2.0-SNAPSHOTD

3 years ago

0.1.0-SNAPSHOTF

3 years ago

0.2.0-SNAPSHOTA

3 years ago

0.2.0-SNAPSHOTB

3 years ago

0.1.1-SNAPSHOTA

3 years ago

0.1.0-SNAPSHOTE

3 years ago

0.1.0-SNAPSHOTD

3 years ago

0.1.0-SNAPSHOTC

3 years ago

0.1.0-SNAPSHOTB

3 years ago

0.1.0-SNAPSHOTA

3 years ago

0.1.0-SNAPSHOT

3 years ago