Skip to main content

The starlette GraphQL implement, which support query, mutate and subscription.

Project description

Starlette GraphQL

The starlette GraphQL implement, which support query, mutate and subscription. Based on python-gql.

Requirement

Python 3.7+

Installation

pip install starlette-graphql

Getting started

# app.py
from gql import query, gql
from stargql import GraphQL

type_defs = gql("""
type Query {
    hello(name: String!): String!
}
""")


@query
async def hello(parent, info, name: str) -> str:
    return name


app = GraphQL(type_defs=type_defs)

Use uvicorn to run app.

uvicorn app:app --reload

Upload File

import uvicorn
from gql import gql, mutate
from stargql import GraphQL

type_defs = gql("""
 scalar Upload
 
 type File {
    filename: String!
  }

  type Query {
    uploads: [File]
  }

  type Mutation {
    singleUpload(file: Upload!): File!
    multiUpload(files: [Upload!]!): [File!]!
  }
""")


@mutate
def single_upload(parent, info, file):
    return file


@mutate
def multi_upload(parent, info, files):
    return files


app = GraphQL(type_defs=type_defs)


if __name__ == '__main__':
    uvicorn.run(app, port=8080)

Subscription

For more about subscription, please see gql-subscriptions.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

starlette-graphql-0.1.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

starlette_graphql-0.1.0-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file starlette-graphql-0.1.0.tar.gz.

File metadata

  • Download URL: starlette-graphql-0.1.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.8.2 Darwin/19.4.0

File hashes

Hashes for starlette-graphql-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e417a3b0caf0157a0d67c4b60981dc2975d51cbf81c12bcc339188735b83c183
MD5 71dca6f7ac159fe7ad4f7a41a4a40e2b
BLAKE2b-256 e7faf3b1e880498fbffc2aec51ee694d29c444d1c50ec30bd7f8263ba2aab9ed

See more details on using hashes here.

File details

Details for the file starlette_graphql-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: starlette_graphql-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.8.2 Darwin/19.4.0

File hashes

Hashes for starlette_graphql-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0463d0ef962ff66910c8efaf6d960f9794284ad064805bb77e3e9e45d5665713
MD5 66bb40ff0c060acd44e1680c9f4c937b
BLAKE2b-256 c96710a1319d866a2a4436870205fdd721ea919bb406e27df916d7aee2d54a90

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page