You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

alita-graphql

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alita-graphql

alita-graphql is graphql extension for Alita。

0.1.0
pipPyPI
Maintainers
1

alita-graphql

alita-graphql is graphql extension for Alita。

Installing

pip install alita-graphql

Quick Start

from alita import Alita
from alita_graphql import GraphQL

class Query(graphene.ObjectType):
    hello = graphene.String(description='A typical hello world')

    def resolve_hello(self, info):
        return 'World'


schema = graphene.Schema(query=Query)

app = Alita('dw')
GraphQL(schema).init_app(app)

  • Code: https://github.com/dwpy/alita-graphql

FAQs

Did you know?

Socket

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