get-blog-by-id
Retrieve specific blog details from a Shopify store using its unique GID via the GraphQL API, enabling targeted data access for store management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blogId | Yes | The GID of the blog to fetch (e.g., "gid://shopify/Blog/1234567890") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blogId": {
"description": "The GID of the blog to fetch (e.g., \"gid://shopify/Blog/1234567890\")",
"minLength": 1,
"type": "string"
}
},
"required": [
"blogId"
],
"type": "object"
}