0.1.36 • Published 2 years ago

nestjs-graphql-resolver v0.1.36

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

NestJS graphql resolver

This library provides functionality which allow to generate resolvers automatically.


Installation

  1. Install npm package
npm i nestjs-graphql-resolver
  1. Decorate your graphql dtos with @EntityObjectType() instead of default @ObjectType() from @nestjs/graphql library.
import { Field, Int } from '@nestjs/graphql';
import { EntityObjectType } from 'nestjs-graphql-resolver';

...

@EntityObjectType({
  name: 'Subcompetency' // <--- Name must be like a typeorm entity name
}) 
export class SubCompetencyObjectType {
  @Field(() => Int) // <--- Don't forget to decorate your dto with @Field or another compatible decorator from @nestjs/graphql library.
  id: number;

...
  1. Decorate your graphql resolvers with @AutoResolver(EntityName)
import { Query, Resolver } from '@nestjs/graphql';
import { SubCompetency } from './sub_competency.entity';
import { AutoResolver } from 'nestjs-graphql-resolver';

@AutoResolver(SubCompetencyObjectType) // <--- Here, and provide graphql dto as a parameter
@Resolver(() => SubCompetencyObjectType)
export class SubCompetencyResolver {
  @Query(() => [SubCompetencyObjectType])
  async test() {
    return [];
  }
}
  1. Naming convention. Postgres table names should be snake_case. You can make it simply add first parameter to entity decorator
...
// user-competency.entity.ts
@Entity('user_competency') // <--- Here
export class UserCompetency extends BaseEntity {
  @Field(() => Int)
  @PrimaryGeneratedColumn()
  id: number;
  1. You should have an entity class for additional table in Many to Many relation. This stuff is needed because graphql should expose this table and types for enums.

  2. Done! Launch the project and test it.


Features

The library automatically resolves One to Many, Many, Many to One relations and solves n+1 problem. Also you can make subscribers automatically for you mutations.

All resolvers provide additional features:

You can override any resolver, just define it in resolver's class just like that

import { Query, Resolver } from '@nestjs/graphql';
import { SubCompetency } from './sub_competency.entity';
import { AutoResolver } from 'nestjs-graphql-resolver';

@AutoResolver(SubCompetency)
@Resolver(() => SubCompetency)
export class SubCompetencyResolver {
  
  @Query(() => [SubCompetency]) 
  async subcompetencies() { // <--- this method will redefine automatically created resolver
    return [];
  }

  ... // <--- Btw, you can make mutations here as well
}

Filtring

Filter feature generates SQL query for filtering. It could be combined with the joining feature if you'd like to filter by some nested model.

Filter input type looks like this

input FiltersExpressionQuery {
  or: [FiltersExpressionQuery]
  and: [FiltersExpressionQuery]
  entity: {
    field: {operator: value}
  }
}

Filters support "or" and "and" operator and following operation types:

EQ = '=',
NEQ = '!=',
GT = '>',
GTE = '>=',
LT = '<',
LTE = '<=',
IN = 'IN',
ILIKE = 'ILIKE',
NOTILIKE = 'NOT ILIKE',
BETWEEN = 'BETWEEN',
NOTBETWEEN = 'NOT BETWEEN',
NULL = 'IS NULL',
NOTNULL = 'IS NOT NULL',

Examples:

Simple filter
{
  subcompetencies(
    where: {
      id: {in: [1, 2]}
    }
  ) {
    id
  }
}
Filter with groups.
This will generates query: where (title ilike '%1%' or title ilike '%2%')
{
  competencies(
    where: {
      or: [
        {
          title: {ilike: "%1%"}
        },
        {
          title: {ilike: "%2%"}
        }
      ]
    }
  ) {
    title
  }
}
This example joins two nested tables and make a filtring by joined SubCompetency model.
{
  seniorities(
    where: {
      competencies: {
        subcompetencies: {
          id: {gte: 1}
        }
      }
    }
  ) {
    title
    competencies {
      title
      subcompetencies(
        order_by: {
          id: asc
        }
      ) {
        id
        title
      }
    }
  }
}

Grouping

Grouping feature allows to make group by and have some filters via having input.

Each generated resolver will have groupAgg field. This field cannot be combined with entity fields.

groupAgg object type looks like this

{
  competencies {
    groupAgg {
      by {
        seniority_id # the field for the group by statement
      }
      count
      sum {
        id
      }
      avg {
        id
      }
      max {
        id
      }
      min {
        id
      }
      fields { # the fields which will be returned in each group
        seniority_id
        subcompetencies {
          title
        }
      }
    }
  }
}

You can combine it with filter which allow to use aggregation functions.

Examples

This example returns an array of seniorities which includes more than one competency.
{
  seniorities (
    where: {
      competencies: {
        count: {
          seniority_id: {gte: 1}
        }
      }
    }
  ) {
    id
  } 
}
This example returns groups which has seniority_id value equal or more than 1
{
  competencies(
    where: {
      or: [
        {
          count: {
            id: {gte: 1}
          }
        }
      ]
    }
  ) {
    groupAgg {
      count
      sum {
        id
      }
      avg {
        id
      }
      fields {
        id
        seniority_id
      }
    }
  }
}

Ordering

Ordering feature allows to order results by some fields.

Examples

Simple example
{
  subcompetencies(order_by: {id: asc}) {
    id
  }
}

Ordering by nested fields.

{
  seniorities(
    order_by: {
      competencies: {
        id: asc
        subcompetencies: {
          id: asc
        }
      }
    }
  ) {
    id
  }
}

Pagination

Pagination allows paging the response data. Pagination will not work well with groupAgg statement.

Examples

Simple example
{
  subcompetencies(
    paginate: {
      page: 0, 
      per_page: 2
    }
  ) {
    title
  }
}
Complete example
{
  competencies(
    where: {
      subcompetencies: {
        title: {ilike: "%5%"}
      }
    }
    order_by: {
      seniority: {
        title: asc_null_first
      }
    }
    paginate: {
      page: 0,
      per_page: 1
    }
  ) {
    id
    title
    subcompetencies {
      groupAgg {
        by {
          competency_id
        }
        count
        fields {
          id
          title
        }
      }
    }
  }
}

Subscribers

To use subscribers you have to set installSubscriptionHandlers: true in your GraphqlModuleOptions. Also you have to be sure that appolo-server-express is installed. Then you'll be able to use @AutoMutation decorator instead of @Mutation.

@AutoMutation decorator has all options from @Mutation and @Subscriber decorator

Examples

...

@AutoResolver(Competency)
@Resolver(() => Competency)
export class CompetencyResolver {
  
  @AutoMutation(() => Competency) // <--- Add decorator here
  async createCompetency(
    @Args('competency') inputCompetency: CreateCompetency,
  ) {
    const competency = new Competency();
    competency.seniority_id = inputCompetency.seniority_id;
    competency.title = inputCompetency.title;

    return competency.save();
  }

...

this example will generate mutation (createCompetency) and subscription (createCompetencySubscriber)

Special cases

  • Joining by specific relation key in case of @JoinColumn(), you should add @JoinColumnField(fromTable, ToTable, propertyName) decorator to the graphql dto.
@EntityObjectType({
  name: 'Task',
})
export class TaskObjectType {
  @Field(() => Int)
  id: number;

  @Field(() => String)
  title: string;
  
  @Field(() => Int, { nullable: true })
  assignee_id: number;

  @JoinColumnField(Task, User, 'assignee_id')
  @Field(() => UserObjectType)
  assignee: UserObjectType;
}

Polymorphic relations

Look at examples with @PolymorphicRelation relation decorator

Limitations

  • Date and scalars are not supported, use string instead
  • Works only with postgres adapter for typeorm
  • Works only with express server
  • Subscribers works with only appolo-server-express
  • You cannot provide options for pub-sub for subscriptions

How to maintain

  1. Clone the repo
  2. Install packages npm install
  3. Apply database mocks from development.sql
  4. Start the project npm run start:dev
  5. Go to localhost:3000/graphql in your browser
0.1.33

2 years ago

0.1.34

2 years ago

0.1.35

2 years ago

0.1.36

2 years ago

0.1.32

3 years ago

0.1.31

3 years ago

0.1.30

3 years ago

0.1.29

3 years ago

0.1.27

3 years ago

0.1.28

3 years ago

0.1.20

3 years ago

0.1.21

3 years ago

0.1.23

3 years ago

0.1.25

3 years ago

0.1.26

3 years ago

0.1.17

3 years ago

0.1.18

3 years ago

0.1.19

3 years ago

0.1.16

3 years ago

0.1.15

3 years ago

0.1.14

3 years ago

0.1.11

3 years ago

0.1.12

3 years ago

0.1.13

3 years ago

0.1.10

3 years ago

0.1.8

3 years ago

0.1.9

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.1

3 years ago

0.1.3

3 years ago

0.1.0

3 years ago

0.0.16

3 years ago

0.0.17

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago