GithubHelp home page GithubHelp logo

gauravgupta98 / socialize-api Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 38 KB

GraphQL API built on .NET 5 using HotChocolate and C#

C# 100.00%
dotnetcore entity-framework-core graphql hotchocolate sqlserver csharp

socialize-api's Introduction

Azure Deployment Code Analysis

Socialize API

GraphQL API build on .NET 5 using C#, HotChocolate, Entity Framework and SQL Server.

Important - Except login and createUser mutations, all GraphQL requests need Authorization header. To get the authorization token, run login mutation.

Queries

  • Get all users -
query {
    user {
        id
        name
        createdTime
        posts {
            postData
            createdTime
        }
    }
}
  • Get all posts -
query {
    posts {
        id
        postData
        createdTime
        user {
            id
            name
        }
    }
}

Mutations

  • Login -
mutation {
    login (credentials: {
        email: "[email protected]"
        password: "P@ssw0rd"
    })
    {
        token
    }
}
  • Create new user -
mutation {
    createUser (userInput: {
        name: "Test User"
        email: "[email protected]"
        password: "P@ssw0rd"
    })
    {
        user {
            id
            name
            createdTime
        }
    }
}
  • Create new post -
mutation {
    createPost (postData: {
        postData: "Yayyyyy! Hello GraphQL."
        userId: "d10cac6672994ba4eb0b08d8db1413c5"
    })
    {
        post {
            id
            postData
            createdTime
            user {
                name
            }
        }
    }
}

socialize-api's People

Contributors

dependabot[bot] avatar gauravgupta98 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.