Skip to main content

Python DB-API and SQLAlchemy interface for GraphQL APIs.

Project description

graphql-db-api PyPI version main workflow codecov

A Python DB API 2.0 for GraphQL APIs

This module allows you to query GraphQL APIs using SQL.

SQLAlchemy support

This module provides a SQLAlchemy dialect.

from sqlalchemy.engine import create_engine

# Over HTTPS (default):
engine_https = create_engine('graphql://host:port/path')

# Over HTTP:
engine_http = create_engine('graphql://host:port/path?is_https=0')

# With a `Bearer` token in the `Authorization` header:
engine_http = create_engine('graphql://:token@host:port/path')

Example Usage

Querying Connections

from sqlalchemy import create_engine
from sqlalchemy import text

# We use GraphQL SWAPI (The Star Wars API) c/o Netlify:
engine = create_engine('graphql://swapi-graphql.netlify.app/.netlify/functions/index')

# Demonstration of requesting nested resource of homeworld
# and then selecting fields from it
query = "select name, homeworld__name from 'allPeople?include=homeworld'"

with engine.connect() as connection:
    for row in connection.execute(text(query)):
        print(row)

Querying Lists

We can mark a given GQL query as being a List when we query that "Table" using a query parameter:

from sqlalchemy import create_engine
from sqlalchemy import text

engine = create_engine('graphql://pet-library.moonhighway.com/')

# The default assumes top level is a Connection.
# For Lists, we must disable this:
query = "select id, name from 'allPets?is_connection=0'"

with engine.connect() as connection:
    for row in connection.execute(text(query)):
        print(row)

alternatively, we can set that at the Engine level:

from sqlalchemy import create_engine
from sqlalchemy import text

# We mark 'allPets' as being a List at the Engine level:
engine = create_engine(
    'graphql://pet-library.moonhighway.com/',
    list_queries=["allPets"],
)

query = "select id, name from allPets"

with engine.connect() as connection:
    for row in connection.execute(text(query)):
        print(row)

Superset support

In order to use with Superset, install this package and then use the graphql protocol in the SQLAlchemy URI like: graphql://swapi-graphql.netlify.app/.netlify/functions/index. We install a db_engine_spec so Superset should recognize the driver.

Roadmap

  • Non-Connections top level
  • Path traversal (basic)
  • Path traversal (basic + nested)
  • Path traversal (list / connection)
  • Bearer Tokens in Authorization Header
  • Advanced Auth (e.g. with token refresh)
  • Passing Headers (e.g. Auth in other locations)
  • Filtering
  • Sorting
  • Relay Pagination

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

sqlalchemy-graphqlapi-0.0.1.dev5.tar.gz (12.9 kB view details)

Uploaded Source

Built Distribution

sqlalchemy_graphqlapi-0.0.1.dev5-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file sqlalchemy-graphqlapi-0.0.1.dev5.tar.gz.

File metadata

File hashes

Hashes for sqlalchemy-graphqlapi-0.0.1.dev5.tar.gz
Algorithm Hash digest
SHA256 b974e3c4205555932be61832670a4b84c1155d4645f62d07eb2e82adb9244906
MD5 3e799b4fdc43c9c97f6fc4609e7c5a9c
BLAKE2b-256 34b5aca9625c2ee544e6056731dc815fea6d800905d4795941981cfc4c112308

See more details on using hashes here.

File details

Details for the file sqlalchemy_graphqlapi-0.0.1.dev5-py3-none-any.whl.

File metadata

File hashes

Hashes for sqlalchemy_graphqlapi-0.0.1.dev5-py3-none-any.whl
Algorithm Hash digest
SHA256 d768cc1b3fb67f0dae45d142921c3cfd3bf87c2dde92362ac420c26e8485b7c2
MD5 7262fef3317e1d1ff7c714bb0b549038
BLAKE2b-256 223949854d244b45af53ad8625500aa8a0bbc0e841c22d56c075c22edccd5bb8

See more details on using hashes here.

Supported by

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