Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a problem "decorating" classes which should be used as ObejctType AND as InputType when I have relations. It should be possible to use the relation class also in other classes

e.g. Customer with Address, User with Address

@ObjectType()
@InputType()
export class Address {
  @Field()
  street: string;

  @Field()
  city: string;
}


@ObjectType()
@InputType()
export class Customer {
  @Field()
  name: string;

  @Field(() => Address)
  address: Address;
}


@ObjectType()
@InputType()
export class User {
  @Field()
  name: string;

  @Field(() => Address)
  address: Address;
}

I would like to use Customer and User also as input parameter for Mutations. But I have no success. I tried variations with "isAbstract" option for InputType and ObjectType but I am not pleased with this solution.

Can anybody of you give me a hint how to do this.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

If you getting a conflict error, you need to explicitly specify the name of ObjectTypes and InputTypes.

So try something like this:

@ObjectType("AddressType")
@InputType("AddressInput")
export class Address {
  @Field()
  street: string;

  @Field()
  city: string;
}

See this Use the same class as Input and Object type in GraphQL in NestJS.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...