GitHub

GraphQL API Demo :: Ricardo Leal

Welcome to my self-generating GraphQL API project. This project is developed using Python and FastAPI as the server, with the GraphQL backend.

My GraphQL API allows you to access data efficiently and flexibly. You can execute complex queries to retrieve information about any element on your own selected schema.

If you'd like to interact directly with the database in your browser, you can navigate to our /graphql endpoint. There, you can execute real-time GraphQL queries and explore the power of GraphQL.

Here's the mutation to login:

mutation login{
    login(
        email:"arthur@morgan.io",
        password:"DemoGraphQL"
    ){
        messages
        successful
        result{
        token
        }
    }
}
        

This is going to give you a token, that you have to enter in the `Headers` section. Otherwise, you'll not be able to perform any query on the elements (the project includes a login authentication process).

Explore and enjoy the flexibility and efficiency of GraphQL in this project!