GraphQL 查询问题 - shopify polaris
GraphQL query issue - shopify polaris
我在开发 shopify 应用程序时遇到了 graphQL 问题。
逻辑很简单。我需要使用 graphQL 从 shopify 商店获取 lineItems。
这是 gql 的代码。
const GET_ORDER_DETAIL = gql`
query getOrderDetail($orderId: String) {
order(id: $orderId) {
name
physicalLocation {
id
}
lineItems (first:100){
edges {
node {
id
}
}
}
}
}
`;
这是我的 React 代码。
{
this.state.refund_list.map((list, index) => {
const orderId = `gid://shopify/Order/${list.order_id}`; // I got correct orderId.
return (
<Query key={index} query={GET_ORDER_DETAIL} variables={{ id: orderId }}>
{({ data, loading, error }) => {
if (loading) return <div>loading...</div>;
if (error) return <div>{error}</div>;
console.log(data);
return <div>test</div>;
}}
</Query>
);
})
}
这里是错误语句。
Uncaught Error: Objects are not valid as a React child (found: Error: GraphQL error: Type mismatch on variable $orderId and argument id (String! / ID!)). If you meant to render a collection of children, use an array instead.
我找到了 $orderId
的正确类型。
我将 String
更改为 ID!
这是我的固定代码。
const GET_ORDER_DETAIL = gql`
query getOrderDetail($orderId: ID!) {
...
}
`;
...
<Query key={index} query={GET_ORDER_DETAIL} variables={{ orderId }}>
...
我在开发 shopify 应用程序时遇到了 graphQL 问题。 逻辑很简单。我需要使用 graphQL 从 shopify 商店获取 lineItems。 这是 gql 的代码。
const GET_ORDER_DETAIL = gql`
query getOrderDetail($orderId: String) {
order(id: $orderId) {
name
physicalLocation {
id
}
lineItems (first:100){
edges {
node {
id
}
}
}
}
}
`;
这是我的 React 代码。
{
this.state.refund_list.map((list, index) => {
const orderId = `gid://shopify/Order/${list.order_id}`; // I got correct orderId.
return (
<Query key={index} query={GET_ORDER_DETAIL} variables={{ id: orderId }}>
{({ data, loading, error }) => {
if (loading) return <div>loading...</div>;
if (error) return <div>{error}</div>;
console.log(data);
return <div>test</div>;
}}
</Query>
);
})
}
这里是错误语句。
Uncaught Error: Objects are not valid as a React child (found: Error: GraphQL error: Type mismatch on variable $orderId and argument id (String! / ID!)). If you meant to render a collection of children, use an array instead.
我找到了 $orderId
的正确类型。
我将 String
更改为 ID!
这是我的固定代码。
const GET_ORDER_DETAIL = gql`
query getOrderDetail($orderId: ID!) {
...
}
`;
...
<Query key={index} query={GET_ORDER_DETAIL} variables={{ orderId }}>
...