Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Going Serverless with GraphQL

Going Serverless with GraphQL

Presented at O'Reilly Velocity London on 10/20/17

Steve Faulkner

October 20, 2017
Tweet

More Decks by Steve Faulkner

Other Decks in Technology

Transcript

  1. Give me a car. With 6 seats. That is red.

    And has a bike rack. Include the bikes. Mountain Bikes. With tires.
  2. Yup

  3. +

  4. const domain = new AWS.Route53('www.example.com') const fn = new AWS.Lambda('render-html')

    const cdn = new Fastly('example-cdn') domain.pipe(cdn).pipe(fn)
  5. const domain = new AWS.Route53('www.example.com') const fn = new AWS.Lambda(‘render-html’,

    () => { return ‘<p>hello world</p>’ }) const cdn = new Fastly('example-cdn') pipe(domain, cdn, fn)