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.

Apollo Federation

Example

For more abount subscription, please see Apollo Federation

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.4.tar.gz (6.8 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.4-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: starlette-graphql-0.1.4.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0 CPython/3.7.6 Darwin/19.5.0

File hashes

Hashes for starlette-graphql-0.1.4.tar.gz
Algorithm Hash digest
SHA256 318a78cd2a2987780ac98d75adad4b084418b21d44ff95a856aaab2d1d2bb8b3
MD5 fb1d0d2592ece500844d6cb64c491052
BLAKE2b-256 0c4766facc00a7fccb8f4ba594089946ecd1a0ecbc631245ab03a0aa1717b77b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: starlette_graphql-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0 CPython/3.7.6 Darwin/19.5.0

File hashes

Hashes for starlette_graphql-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 ff6a65eac44823ea4263af23b821e705bae6f181300833036625fe79bc371f35
MD5 ee55f9a6cad8e9332c6bd2e11a6d3cd1
BLAKE2b-256 4f7d25e298f17e83c4e42d1613421abe4e6f946f1ed8f0f21faf2b8d42dd8d6e

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