gpt4 book ai didi

graphql - "Cannot query field "可用 "on type "查询"

转载 作者:行者123 更新时间:2023-12-04 17:40:31 24 4
gpt4 key购买 nike

当我尝试获取包括可用属性在内的所有产品时,我在“查询”类型上收到错误消息“无法查询字段“可用”。

查询调用

const res = await fetch(`graphql?query={products{
id
name
available
}}`);

架构
export default `
type Product {
id: ID!
name: String!
available: [Available]
}

type Available {
stock: String
size: String
}

input AvailableInput {
stock: String
size: String
}

type Query {
product(name: String!): Product
products: [Product]
}

type Mutation {
addProduct(name: String! available:[AvailableInput] ): Product
}
`;

最佳答案

你的 type Product看起来像架构?也许您在查询 available 时遗漏了一个字段字段作为 Product 的子字段

关于graphql - "Cannot query field "可用 "on type "查询",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54698726/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com