【发布时间】:2021-07-29 11:40:31
【问题描述】:
我正在使用 React 和 AWS Amplify 实现一个网页。
我的schema.graphql 文件中有以下定义:
type Calendar @model {
id: ID!
name: String
description: String
url: String!
intervals: [Interval] @connection(keyName: "byCalendar", fields: ["id"])
}
我想从其 URL 字符串中获取日历。不幸的是,下面的代码抛出了一个错误:
import { API, graphqlOperation } from "aws-amplify";
import * as queries from "../../graphql/queries";
await API.graphql(graphqlOperation(queries.getCalendar, { url: "some-url"}));
Variable "$id" of required type "ID!" was not provided.
从错误中,提供 id 是强制性的。但是,我希望能够仅从 url 获取对象。
我该怎么做?
我正在使用放大的 cli 自动生成的查询。
/* eslint-disable */
// this is an auto generated file. This will be overwritten
export const getCalendar = /* GraphQL */ `
query GetCalendar($id: ID!) {
getCalendar(id: $id) {
id
name
description
url
intervals {
nextToken
}
createdAt
updatedAt
}
}
`;
export const listCalendars = /* GraphQL */ `
query ListCalendars(
$filter: ModelCalendarFilterInput
$limit: Int
$nextToken: String
) {
listCalendars(filter: $filter, limit: $limit, nextToken: $nextToken) {
items {
id
name
description
url
createdAt
updatedAt
}
nextToken
}
}
`;
【问题讨论】:
标签: reactjs graphql aws-amplify