Launch GraphQL Playground

Stories

CyberWire stories


List of Stories

List of all CyberWire stories published in 2020, sorted by most recent first.

Query

# Get a list of stories
# Use filtering criteria to narrow down the list
query Stories($query: StoryQuery, $options: QueryOptions) {
  stories(query: $query, options: $options) {
    pageInfo {
      totalPages
      totalElements
      number
      size
    }
    items {
      id
      datePublished
      title
    }
  }
}

Query Variables

{
  "query": {
    "dateStart": "2020-01-01",
    "dateEnd": "2020-12-31"
  },
  "options":{
    "limit":5,
    "sortKey": "datePublished",
    "page":0
  }
}

Stories list