Anchor to webPresenceCreateweb
webPresenceCreate
mutation
Requires for queries and both
as well as
for mutations.
Creates a web presence.
Anchor to Arguments
Arguments
- Anchor to inputinput•Web
Presence requiredCreate Input! The details of the web presence to be created.
Was this section helpful?
Anchor to WebPresenceCreatePayload returnsWebPresenceCreatePayload returns
- Anchor to userErrorsuser•
Errors [MarketUser non-nullError!]! The list of errors that occurred from executing the mutation.
- Anchor to webPresenceweb•
Presence The created web presence object.
Was this section helpful?
Mutation Reference
mutation webPresenceCreate($input: WebPresenceCreateInput!) {
webPresenceCreate(input: $input) {
userErrors {
field
message
}
webPresence {
# MarketWebPresence fields
}
}
}
Input
{
"input": {
"alternateLocales": [
"<your-alternateLocales>"
],
"defaultLocale": "<your-defaultLocale>",
"domainId": "gid://shopify/<objectName>/10079785100",
"subfolderSuffix": "<your-subfolderSuffix>"
}
}
{
"input": {
"alternateLocales": [
"<your-alternateLocales>"
],
"defaultLocale": "<your-defaultLocale>",
"domainId": "gid://shopify/<objectName>/10079785100",
"subfolderSuffix": "<your-subfolderSuffix>"
}
}
input WebPresenceCreateInput {
alternateLocales: [String!]
defaultLocale: String!
domainId: ID
subfolderSuffix: String
}