Introduction

The relationshipField decorator in Graphweaver allows you to establish relationships between GraphQL entities. It provides a convenient way to define and configure relationships, enabling you to link entities and query related data.

Usage

We are going to work through an example where we connect a Task to a single User and a collection of Tags.

To use the relationshipField decorator, follow these steps:

import { RelationshipField } from '@exogee/graphweaver';
import { Field, ObjectType } from 'type-graphql';

// Import the related entities (e.g., User and Tag)
import { User } from '../user';
import { Tag } from '../tag';

@Entity('Task', { provider: taskProvider })
export class Task extends GraphQLEntity<OrmTask> {
  // Other fields and decorators...

  @RelationshipField<Task>(() => User, { id: 'userId' })
  user!: User;

  @RelationshipField<Tag>(() => [Tag], { relatedField: 'tasks' })
  tags!: Tag[];

  // Other entity code...
}

In this example, we're using a Task entity and establishing relationships with the User and Tag entities.