Launch GraphQL Playground

Story


Single Story

Details of a single story can be obtained by using the story id parameter obtained from the previous query

Query

# Get a single story item using id
query Story($id: String!) {
  story(cwid: $id) {
    id
    datePublished
    title
    description
    body
    media {
      type
      source
      url
    }
  }
}

Query Variables

{
  "id": "b1d6329507fa42908263303f2ea81515"
}

Query Response

{
  "data": {
    "story": {
      "id": "b1d6329507fa42908263303f2ea81515",
      "datePublished": "2021-02-07T06:00:00.000Z",
      "title": "In the clear: what it’s like working as a woman in the cleared community.",
      "description": "This special edition podcast highlights three women, Priyanka, Ashley and Lauren, who chose to focus their careers in cybersecurity for the mission-based organization Northrop Grumman. Kathleen Smith from ClearedJobs.Net joins us as our panel moderator. The CyberWire's Jennifer Eiben hosts the event. We are excited to share this look into the world of women in cybersecurity.",
      "body": "<p>This special edition podcast highlights three women, Priyanka, Ashley and Lauren, who chose to focus their careers in cybersecurity for the mission-based organization Northrop Grumman. Kathleen Smith from ClearedJobs.Net joins us as our panel moderator. The CyberWire's Jennifer Eiben hosts the event. We are excited to share this look into the world of women in cybersecurity.</p><h3>Transcript:</h3><p><strong>Jennifer Eiben</strong>:&nbsp;.....",
      "media": [
        {
          "type": "Video",
          "source": "Vimeo",
          "url": "https://player.vimeo.com/video/508864807"
        }
      ]
    }
  }
}