0

我正在尝试在 type-graphql 中进行突变,其中一个参数是 Object 所以:

@Mutation(() => Boolean)
async createProduct(
    @Arg('name', () => String) name: string,
    @Arg('price', () => Int) price: number,
    @Arg('images', () => [InputImages]) images: [ImagesArray],
) {
    // Code
}

所以我为参数“图像”创建了一个输入类型:

@InputType()
class InputImages {
  @Field(() => String)
  filename: string;
}

和一个对象类型:

@ObjectType()
export class ImagesArray {
    @Field(() => String)
    filename: string
}

现在我正在尝试使用 GraphQL 代码生成器,我需要在客户端编写查询和突变作为 .graphql 文件扩展名,所以我有:

mutation CreateProduct(
    $name: String!
    $price: Int!
    $images: [ImagesArray]!
) {
    createProduct(
        name: $name
        price: $price
        images: $images
    );
}

现在,当我尝试运行“npm run gen”时说:

GraphQLDocumentError:未知类型“ImagesArray”。

我试图在上面添加:

type ImagesArray {
    filename: String
}

不再工作了,有什么想法吗?

4

1 回答 1

0
  1. 您不需要ImagesArray输入 args:
@Arg('images', () => [InputImages]) images: InputImages[],
  1. 更新您的突变类型名称:
mutation CreateProduct(
    $name: String!
    $price: Int!
    $images: [InputImages!]!
) {
  # ...
}
于 2021-07-01T08:31:28.280 回答