Serverless with GraphQL #ServerlessSeptember

ramanaditya

Aditya Raman

Posted on September 9, 2020

Serverless with GraphQL #ServerlessSeptember

Everything on Azure. Scalable and cost-effective Serverless system leveraging GraphQL API hosted on Azure. Easy deployable and production-ready code with Azure CLI and Azure DevOps. Built a simple API to query your professional details. You can modify and create your own API, isn't it beautiful.

GraphQL API URL: https://ramanaditya-graphql.azurewebsites.net/graphql?code=mWybiYT9VGKSkNsZvuzMPajaNiMYvbEBhc6LErNr8hnXdeunrqOR7w==

About the Project

Medium Article: https://medium.com/@ramanaditya/serverless-with-graphql-c0bf59078303

This article is part of #ServerlessSeptember https://aka.ms/ServerlessSeptember2020. You'll find other helpful articles, detailed tutorials, and videos in this all-things-Serverless content collection. New articles from community members and cloud advocates are published every week from Monday to Thursday through September. 

Find out more about how Microsoft Azure enables your Serverless functions at

Query

query {
    hello
}

query {
    name: {
        firstName
        lastName
    }
}

query {
    connect {
        professional {
            email
            website
            linkedin
            github
        }
        social {
            twitter
            instagram
        }
    }
}

query {
    skills {
        language
        database
        cloudService
        frameworks
        vcs
        api
        industryKnowledge
    }
}

Enter fullscreen mode Exit fullscreen mode

Important Links:

Medium: https://medium.com/@ramanaditya/serverless-with-graphql-c0bf59078303
Azure DevOps: https://bellatrixdata@dev.azure.com/bellatrixdata/serverless-graphql/_git/serverless-graphql
GitHub: https://github.com/ramanaditya/serverless-graphql.git
GraphQL API URL: https://ramanaditya-graphql.azurewebsites.net/graphql?code=mWybiYT9VGKSkNsZvuzMPajaNiMYvbEBhc6LErNr8hnXdeunrqOR7w==

Alt Text

💖 💪 🙅 🚩
ramanaditya
Aditya Raman

Posted on September 9, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related