Anchor to productFeedCreateproduct
productFeedCreate
mutation
Requires Access allowed for apps with scope.
Creates a product feed for a specific publication.
Anchor to Arguments
Arguments
- Anchor to inputinput•
The properties of the new product feed.
Was this section helpful?
Anchor to ProductFeedCreatePayload returnsProductFeedCreatePayload returns
- Anchor to productFeedproduct•
Feed The newly created product feed.
- Anchor to userErrorsuser•
Errors [ProductFeed non-nullCreate User Error!]! The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
mutation productFeedCreate($input: ProductFeedInput) {
productFeedCreate(input: $input) {
productFeed {
# ProductFeed fields
}
userErrors {
field
message
}
}
}
Input
{
"input": {
"country": "",
"language": ""
}
}
{
"input": {
"country": "",
"language": ""
}
}
input ProductFeedInput {
country: CountryCode!
language: LanguageCode!
}