Metadata-Version: 2.1
Name: alita-graphql
Version: 0.1.0
Summary: alita-graphql is graphql extension for Alita。
Home-page: https://github.com/dwpy/alita-graphql
Author: Dongwei
License: BSD
Project-URL: Documentation, https://github.com/dwpy/alita-graphql
Project-URL: Code, https://github.com/dwpy/alita-graphql
Description: ## 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)
        
        ```
        
        ## Links
        
        - Code: https://github.com/dwpy/alita-graphql
Platform: any
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
