Skip to main content

A Python client for Saola's GraphQL API

Project description

Saola GraphQL API client

This is a GraphQL client for Python based on the ariadne-codegen pip package. It is used to access the API at app.saola.sg.

The client provides a convenient way to interact with the Saola GraphQL API, allowing you to perform various queries and mutations related to users, connections, workspaces, chats, and sources.

To add more queries and mutations, you can create new files with the .graphql extension in the saola_graphql_client/graphql directory. Once you have added your new GraphQL files, run the ./saola_graphql_client/run-codegen.sh script to generate the necessary client code.

Installation

pip install saola-graphql-client

Usage

To use the client, you can import the generated client class and use it to perform queries and mutations. Here is an example:

import asyncio
import jwt
from saola_graphql_client.graphql_client import Client as SaolaGraphQLClient

access_token = "your_access_token"
jwt_payload = jwt.decode(access_token, options={"verify_signature": False})
user_id = jwt_payload.get("hasura", {}).get("x-hasura-user-id")

client = SaolaGraphQLClient(
    url="https://app.saola.sg/v1/graphql",
    headers={"Authorization": f"Bearer {access_token}"},
)


async def get_and_print_current_user(client, user_id):
    current_user = await client.get_user(id=user_id)
    print(current_user)


asyncio.run(get_and_print_current_user(client, user_id))

Check examples/ for more examples.

Available methods

Check saola_graphql_client/graphql_client/client.py for the available methods.

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

saola_graphql_client-0.0.8.tar.gz (18.9 kB view details)

Uploaded Source

Built Distribution

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

saola_graphql_client-0.0.8-py3-none-any.whl (25.4 kB view details)

Uploaded Python 3

File details

Details for the file saola_graphql_client-0.0.8.tar.gz.

File metadata

  • Download URL: saola_graphql_client-0.0.8.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for saola_graphql_client-0.0.8.tar.gz
Algorithm Hash digest
SHA256 f28346d6bc785f0e267e7d3071a3b89e6962383f51283af9606f8693a5ad76ce
MD5 0a6c1896d3aadde34323a4ddc99ed65a
BLAKE2b-256 f41398116683dc2fefa324c98b78373e0ccdf0509aa30a97c68085c20e3628a4

See more details on using hashes here.

File details

Details for the file saola_graphql_client-0.0.8-py3-none-any.whl.

File metadata

File hashes

Hashes for saola_graphql_client-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 506c6246bb08c8f4681f6f5318714ac0c78a08ac9b7ee14d50b17bac1d5c3f68
MD5 cc9c0ce2058cb377173a8718b8fba9e4
BLAKE2b-256 496d732155ae2c5098e3b8b90359e571990255afaeab5fe128e68b7ad8a7f945

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