Get a document

Returns a document.

Query

query($id: ID!) {
  document(id: $id) {
    id

    category {
      id
      name
    }

    html
    isPublished
    markdown
    metaDescription
    metaTitle
    publishedAt
    slug
    subtitle
    title

  }
}

Arguments

id: ID!

The ID of the document.

Example Response

{
  "data": {
    "document": {
      "id": "a6bb3400def15d00249ec98c",
      "category": {
        "id": "36bb3280def15d00249ec97b",
        "name": "Reports"
      },
      "html": "<p>Lorem ipsum dolor sit amet.</p>\n",
      "isPublished": true,
      "markdown": "Lorem ipsum dolor sit amet.",
      "metaDescription": null,
      "metaTitle": null,
      "publishedAt": "2024-08-13T10:23:05.939Z",
      "slug": "the-2024-state-of-marketing-and-trends-report:-data-from-1400+-global-marketers",
      "subtitle": "Discover the trends, winning opportunities and challenges brands will face this year, with data from 1,400+ global B2B and B2C marketers.",
      "title": "The 2024 State of Marketing & Trends Report: Data from 1400+ Global Marketers"
    }
  }
}