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.
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:
relationshipField
decorator and the entities you want to link: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';
relationshipField
decorator:@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.
relationshipField
decorator:
Task
to User
):
() => RelatedEntity
syntax.id
property. This is used to match the relationship between the entities. Here it is using the userId
field which is on Task.userId
() => [RelatedEntity]
syntax.relatedField
property with the name of the field on the related entity that represents the inverse relationship. In this case its the reverse relationship and which is Tag.tasks
.