Launch GraphQL Playground

Cybersecurity events


List of events

Get a list of cybersecurity events. Filter using start date and end date. Only events which occur partially or fully in the date range are shown.

Query

query Events($query: EventQuery, $options: QueryOptions) {
  cyberEvents(query: $query, options: $options) {
    pageInfo {
      totalElements
      size
    }
    items {
      title
      description
      startDate
      endDate
      url
    }
  }
}

Query Variables

{
  "query": {
    "dateStart": "2021-02-17",
    "dateEnd": "2021-04-21"
  },
  "options":{
    "limit":3,
    "sortKey": "startDate",
    "reverse": true,
    "page":0
  }
}

Query Response

{
  "data": {
    "cyberEvents": {
      "pageInfo": {
        "totalElements": 47,
        "size": 3
      },
      "items": [
        {
          "title": "The Healthcare Cyber Security Summit - February 18, 2021, 12pm EST",
          "description": "HUB Security is thrilled to invite you to the next Healthcare Cyber Security Summit. Join the discussion on IoMT, phishing, AI and confidential computing in healthcare. Keynote speakers from Intel, GE, ICON, H-ISAC, FN Bulovka, MedCrypt and NetApp. Free registration.",
          "startDate": "2021-02-09T05:00:00.000Z",
          "endDate": "2021-02-17T05:00:00.000Z",
          "url": "https://hubsecurity.io/healthcare-cyber-security-summit/"
        },
        {
          "title": "M3AAWG 51st General Meeting",
          "description": "The Messaging, Malware and Mobile Anti-Abuse Working Group (M3AAWG), the largest global industry association working against online exploitation, will host its 51st General Meeting from February 15-18, 2021. In M3AAWG's third virtual event, representatives from over 200 member companies, including Google, Verizon, Twitter, Comcast, AT&T and Microsoft, will discuss prominent cybersecurity issues and establish approaches to combat major threats. M3AAWG's 51st General Meeting will bring together industry experts and leaders from internet service providers, email service providers, social networking companies, software and hardware vendors to advance knowledge around evolving online abuse. Sessions explore timely topics, including NIST's new method to combat phishing, the adoption of TLS 1.3, fighting smishing in the UK, DDoS attack backtracking strategies and much more.",
          "startDate": "2021-02-15T05:00:00.000Z",
          "endDate": "2021-02-18T05:00:00.000Z",
          "url": "https://www.m3aawg.org/upcoming-meetings"
        },
        {
          "title": "SoCal Cyber Cup Challenge (SCCC)",
          "description": "Now in its 12th year, the SoCal Cyber Cup Challenge (SCCC) is a cybersecurity competition for middle school, high school, and community college students in the Southern California region, started by NDIA San Diego. Supported by a Department of Defense grant, this year’s competition will include community college students and extensive training for competitors and their mentors. As part of the grant, faculty from Coastline College, Palomar College, and Riverside City College will be supporting the challenge by developing mentor training content and promoting the competition.",
          "startDate": "2021-02-15T05:00:00.000Z",
          "endDate": "2021-05-31T04:00:00.000Z",
          "url": "https://cyberskyline.com/events/socalccc"
        }
      ]
    }
  }
}