Socket
Socket
Sign inDemoInstall

graphql-api

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    graphql-api

A framework for building Python GraphQL APIs.


Maintainers
1

Readme

GraphQL-API

Framework for building a GraphQL API with Python

coverage report

pipeline status

Installation

Pip
pip install graphql-api

Run the Unit Tests

To run the tests.

pip install pipenv
pipenv install --dev
pipenv run python -m pytest tests --cov=graphql_api

Docs

The documentation is public, and is generated using Sphinx.

GraphQL-API Documentation

Build documentation

To build a local static HTML version of the documentation.

pip install pipenv
pipenv install sphinx
pipenv run sphinx-build docs ./public -b html

Simple Example

from graphql_api import GraphQLAPI

api = GraphQLAPI()

@api.type(root=True)
class MathService:

    @api.field
    def is_odd(self, number: int) -> str:
        return "No" if (num % 2) else "Yes"


query = '''
    query {
        isOdd(number: 5)
    }
'''

result = api.executor().execute(query)

print(result.data)
$ python example.py
>>> {'isOdd': 'No'}

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc