All Projects → simonaco → Serverless Graphql Workshop

simonaco / Serverless Graphql Workshop

Licence: mit
GraphQL and Serverless workshop

Projects that are alternatives of or similar to Serverless Graphql Workshop

Azure Functions Python Samples
Azure Functions Python Sample Codes
Stars: ✭ 266 (+280%)
Mutual labels:  serverless, azure, azure-functions
Cadscenario personalisation
This is a end to end Personalisation business scenario
Stars: ✭ 10 (-85.71%)
Mutual labels:  serverless, azure, azure-functions
Serverless Url Shortener
Azure Function for a URL shortening website. Uses serverless functions, Azure Table Storage and Application Insights.
Stars: ✭ 113 (+61.43%)
Mutual labels:  serverless, azure, azure-functions
Azure Function Express
⚡️Allows Express.js usage with Azure Functions
Stars: ✭ 146 (+108.57%)
Mutual labels:  serverless, azure, azure-functions
Batch Shipyard
Simplify HPC and Batch workloads on Azure
Stars: ✭ 240 (+242.86%)
Mutual labels:  serverless, azure, azure-functions
Serverless Azure Functions
Serverless Azure Functions Plugin – Add Azure Functions support to the Serverless Framework
Stars: ✭ 213 (+204.29%)
Mutual labels:  serverless, azure, azure-functions
Serverlesslibrary
Source code for the Azure Serverless Community Library
Stars: ✭ 119 (+70%)
Mutual labels:  serverless, azure, azure-functions
Jazz
Platform to develop and manage serverless applications at an enterprise scale!
Stars: ✭ 254 (+262.86%)
Mutual labels:  serverless, azure, azure-functions
25 Days Of Serverless
Repository responsible for 25 days of Serverless challenges
Stars: ✭ 400 (+471.43%)
Mutual labels:  serverless, azure, azure-functions
Vscode Apimanagement
VS Code extension for Azure API Management.
Stars: ✭ 32 (-54.29%)
Mutual labels:  serverless, azure
Azure For Developers Workshop
The Azure cloud is huge and the vast service catalog may appear daunting at first, but it doesn’t have to be!
Stars: ✭ 38 (-45.71%)
Mutual labels:  azure, azure-functions
Microservice
Xigadee is an open-source Microservice framework, developed by Paul Stancer and Guy Steel. The libraries provide a simple and consistent approach for building modern enterprise API and Microservice based solutions; specifically those solutions targeted on the Azure platform.
Stars: ✭ 47 (-32.86%)
Mutual labels:  serverless, azure
Graphql Serverless
Sample project to guide the use of GraphQL and Serverless Architecture.
Stars: ✭ 28 (-60%)
Mutual labels:  graphql, serverless
Project Fortis
Repository for all parts of the Fortis architecture
Stars: ✭ 27 (-61.43%)
Mutual labels:  graphql, azure
Api.gatsbyjs.org
The API for the Gatsby swag store.
Stars: ✭ 44 (-37.14%)
Mutual labels:  graphql, serverless
Panther
Detect threats with log data and improve cloud security posture
Stars: ✭ 885 (+1164.29%)
Mutual labels:  graphql, serverless
Serverless
This is intended to be a repo containing all of the official AWS Serverless architecture patterns built with CDK for developers to use. All patterns come in Typescript and Python with the exported CloudFormation also included.
Stars: ✭ 1,048 (+1397.14%)
Mutual labels:  graphql, serverless
Bootcamp 2021
Fusing Serverless Cloud Computing, Infrastructure as Code, Graph Databases, AI, and IoT Technologies and preparing for Operation Unicorn Startups
Stars: ✭ 55 (-21.43%)
Mutual labels:  graphql, serverless
Azure Functions Billing
Azure Functions v2 with .NET Core - billing in serverless architecture.
Stars: ✭ 49 (-30%)
Mutual labels:  serverless, azure-functions
Examples
Infrastructure, containers, and serverless apps to AWS, Azure, GCP, and Kubernetes... all deployed with Pulumi
Stars: ✭ 1,085 (+1450%)
Mutual labels:  serverless, azure

serverless-graphql-workshop

In this workshop we'll build a Serverless GraphQL endpoint for an existing voting API.

slides

Build Scalable APIs Using GraphQL and Serverless

Prerequisites

  1. A recent version of Node (8+)

  2. VS Code

  3. Azure Functions CLI

  4. Azure Functions Extension for VS Code

  5. Free Azure Account

Steps

  1. Create your own services following steps on services readme

  2. Create GraphQL endpoint following steps on api readme

  3. Add GraphiQL UI using steps in readme

Demo app

GraphQL endpoint: https://graphqlplayground.azurewebsites.net/api/graphql

GraphiQL endpoint: https://graphqlplayground.azurewebsites.net/api/graphiql

Sample query:

query {
  teams {
    id
    name
    points
  }
}

Sample mutation:

mutation {
  incrementPoints(id:2) {
    id
    name
    points
  }
}

🎉 Congrats!! You made it - built your very first GraphQL endpoint on Serverless! 🎉

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].