- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 graphql 查询/突变。
我收到错误:
GraphQLError:语法错误:预期:,找到{
我不知道其中哪一个是错误的。
import gql from 'graphql-tag';
export const CategoriesQuery = gql`
query categoriesQuery(
$id: ID!,
$country: String!,
$name: String!
) {
sections(
id: $id,
country: $country,
name: $description
) {
id,
createdBy,
createdDate,
lastUpdate,
name
}
}
`;
export const ItemsQuery = gql`
query itemsQuery(
$id: ID!,
$category: String!,
$url: String!,
$alias: String!,
$name: String!
) {
items(
input {
id: $id,
category: $category,
url: $url,
alias: $alias,
name: $name
}
) {
id,
createdBy,
createdDate,
lastUpdate,
name,
category,
url,
alias,
description
}
}
`;
export const AddCategoryMutation = gql`
mutation ($category: CategoryInput!) {
addCategory(category: $category) {
id
}
}
`;
export const AddItemMutation = gql`
mutation ($item: ItemInput!) {
addItem(item: $item){
id
}
}
`;
最佳答案
这是第二个查询。你需要改变这个
items(
input {
id: $id,
category: $category,
url: $url,
alias: $alias,
name: $name
}
)
items(
input: {
id: $id,
category: $category,
url: $url,
alias: $alias,
name: $name
}
)
input
后面加一个冒号
关于找到 GraphQLError : Syntax Error: Expected :, {,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51877455/
尝试使用 Apollo 客户端时出现以下语法错误 GraphQLError: Syntax Error: Expected Name, found $ 我发送的查询就像这样 const CREATE_
我正在尝试使用 GraphQLError 自定义消息传递。 我想用 GraphQL 错误处理几个用例: 当用户名和密码不匹配时,我想返回自定义用户名和密码不匹配的消息。 当用户输入无效的电子邮件时,我
这是我的 graphql 查询/突变。 我收到错误: GraphQLError:语法错误:预期:,找到{ 我不知道其中哪一个是错误的。 import gql from 'graphql-tag'; e
尝试运行 React 应用程序后,出现以下错误: “GraphQLError:语法错误:预期名称,已找到 [” 错误引用的具体突变是: import gql from "graphql-tag"; e
我有一个基本的 Nestjs - Mongoose - Graphql api,我定义了两个模式:User和 Event //USER Schema @Schema() export class Us
我想向用户显示一些来自 graphql 服务器的错误。 有一些带有使用某些突变的回调的组件 onSave() => { this.props.mutate({ mutation
我正在尝试查询这里的graphql服务器 http://sapienscube.pythonanywhere.com/intrusion-detection-system 在Reactjs中使用Apo
我的后端 API 使用 NestJS、TypeORM 和 GraphQL。我收到以下错误: GraphQLError [Object]: Query root type must be provide
我在 graphql 查询上遇到了上述错误,我顺便使用 apollo-react 并使用查询组件来渲染数据 这是我的代码 const GET_VEHICLE_CHECKS = gql` query g
我尝试使用 GraphQL 和 Kotlin 开发 REST API,但面临以下问题:我尝试创建一个扩展 RuntimeException 并实现 GraphQLError 的自定义异常,但在 Kot
我使用 graphql-tools 拼接了两个 graphql 端点。对于一个端点模式,它工作正常,但对于另一种模式,它会抛出此错误“GraphQLError:在类型中找不到字段:‘query_roo
我面临的奇怪问题。使用 Vue-CLI3 npm runserve。 具有以下配置: // vue.config.js module.exports = { chainWebpack: confi
我在一个 Angular 项目中使用放大。当我运行命令 ng serve 时,我得到了这个错误。 Error: node_modules/@aws-amplify/api-graphql/lib-es
我是一名优秀的程序员,十分优秀!