I am trying to make a single collection using graphQL & here is my mutation
mutation {
collectionCreate(input: {
title:"Physical"
descriptionHtml: "<p>t.shirts US standard sizes</p>"
sortOrder: CREATED_DESC
image: {
altText: "Physical image"
src: "https://shop.falconembroidery.com/image/catalog/profile-pic.png"
}
metafields: [
{
description: "Men's & women's garments"
id: "gid://shopify/Metafield/112200"
key: "description"
namespace: "description"
type: "text"
value: "Men's & women's garments"
}
]
ruleSet: {
appliedDisjunctively: false
rules: {
column: TAG
condition: "Physical"
relation: CONTAINS
}
}
seo: {
title: "Physical"
description: "bnasdjbfksdb"
}
}) {
collection {
id
title
}
}
}
The Response:
{
"errors": [
{
"message": "Internal error. Looks like something went wrong on our end.\nRequest ID: f0adc93f-657e-4053-9f39-c916cc6e8390 (include this in support requests).",
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"requestId": "f0adc93f-657e-4053-9f39-c916cc6e8390"
}
}
]
}
what is the issue I have tried several times using Shopify GraphiQL App ?