Skip to main content

GraphQL client in the terminal.

Project description

Build and execute GraphQL queries in the terminal.

This project is inspired by https://graphiql-online.com.

https://github.com/eerimoq/gqt/raw/main/docs/assets/showcase.gif

Installation

pip3 install gqt

It’s recommended to install bat for pretty output.

Controls

  • Press h or ? for help.

Examples

Set default GraphQL endpoint:

$ export GQT_ENDPOINT=https://mys-lang.org/graphql

Interactively create a query and execute it:

$ gqt
{
    "statistics": {
        "numberOfGraphqlRequests": 3
    }
}

Repeat last query:

$ gqt -r
{
    "statistics": {
        "numberOfGraphqlRequests": 4
    }
}

Print the query instead of executing it:

$ gqt -q
query Query {
  statistics {
    numberOfGraphqlRequests
  }
}

YAML output:

$ gqt -y
statistics:
  numberOfGraphqlRequests: 8

Print the schema:

$ gqt --print-schema
type Query {
  standardLibrary: StandardLibrary!
  statistics: Statistics!
  activities: [Activity!]!
}

type StandardLibrary {
  package(name: String!): Package!
  packages: [Package!]
  numberOfPackages: Int
  numberOfDownloads: Int
}
...

Known issues

  • Arguments does not work for scalar and input types.

  • Unions and interfaces are not implemented.

  • And much more.

Ideas

  • Leaves with arguments:

    type Query {
        foo(id: Int, name: String): String
    }
    
    Unselected:
    
    ╭─ Query
    │ □ foo
    
    Selected:
    
    ╭─ Query
    │ ■ foo
    │   ■ id: 5
    │   □ name:
  • Required arguments with default value:

    □: omit
    ■: non-null value
    $: variable
  • Check for schema modifications when starting. Do it in the background and notify the user if it was modified.

    New schema fetched from the server. Use it? y/n

  • List argument example:

    ╭─ Query
    │ ▼ item
    │   ■ kinds:
    │     [0] ■ a: foo
    │         ■ b: eq
    │         ■ c:
    │           [0] ■ a: x
    │               ■ b: y
    │           [1]
    │     [1] ■ a: bar
    │         ■ b: ne
    │         □ c:
    │     [2]
  • Input example:

    ╭─ Query
    │ ▼ item
    │   ■ config:
    │     ■ unit: metric
    │     □ width:
    │   □ length
    │   □ weight
  • Variables example:

    ╭─ Query
    │ ▼ standardLibrary
    │   ▼ package
    │     $ name: name
    │     ■ id: 5
    │     $ kind: kind
    │     □ name
    │   □ numberOfDownloads
    │ ▶ statistics
    
    ╭─ Variables
    │ name: time
    │ kind:
    │   [0] ■ a: bar
    │       ■ b: ne
    │       □ c:
    │   [1]
  • Print variables:

    $ gqt -v
    {"name": "foo", "kind": [{"a": "bar", "b": "ne"}]}
  • Unions:

    Always query __typename.

    union SearchResult = Book | Author
    
    type Book {
      title: String!
    }
    
    type Author {
      name: String!
    }
    
    type Query {
      search(contains: String): [SearchResult!]
    }
    
    Unselected:
    
    ╭─ Query
    │ ▶ search
    
    Selected:
    
    ╭─ Query
    │ ▼ search
    │   ▶ Book
    │     ■ title
    │   ▶ Author
    │     ■ name
  • Alias?

    • Press a to create an alias.

    • Press d to delete an alias.

    smallPicture and mediumPicture are aliases of picture.

    ╭─ Query
    │ ▶ Book
    │   ▶ picture
    │   ▼ smallPicture: picture
    │     ■ width: 320
    │     ■ height: 240
    │   ▼ mediumPicture: picture
    │     ■ width: 800
    │     ■ height: 600
  • Subscriptions. Probably out of scope.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

gqt-0.73.0.tar.gz (12.1 kB view details)

Uploaded Source

Built Distribution

gqt-0.73.0-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file gqt-0.73.0.tar.gz.

File metadata

  • Download URL: gqt-0.73.0.tar.gz
  • Upload date:
  • Size: 12.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for gqt-0.73.0.tar.gz
Algorithm Hash digest
SHA256 564d4cc55a0fad2b0dbc610dc6961b5ec4b2c5101074b956cb0334130d8a6ae6
MD5 de047dd2538d48461a637c85c44f7470
BLAKE2b-256 65a4e257ccf0287486c96253db056a2164296a0a6120114e7a67f89141bdaf34

See more details on using hashes here.

File details

Details for the file gqt-0.73.0-py3-none-any.whl.

File metadata

  • Download URL: gqt-0.73.0-py3-none-any.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for gqt-0.73.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0b8fb9c1cf1160f9eb38d614d5e5fd8b959750dc691d3f21578cb4f18e2541cf
MD5 04eee27c91ca4960363ff50172283d65
BLAKE2b-256 68401c22b615b47922ffb9d83bfc4752a3950ae6a50781733bd3d27525e87f9c

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