Skip to content

Commit 2261312

Browse files
committed
docs: rebuild
1 parent a761fa8 commit 2261312

File tree

24 files changed

+114
-118
lines changed

24 files changed

+114
-118
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "qlient"
3-
version = "0.2.1-beta"
3+
version = "0.2.2-beta"
44
description = "A fast and modern graphql client designed with simplicity in mind."
55
authors = ["Daniel Seifert <[email protected]>"]
66
maintainers = ["Daniel Seifert <[email protected]>"]

site/404.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111

1212

1313
<link rel="icon" href="/python-qlient/assets/images/favicon.png">
14-
<meta name="generator" content="mkdocs-1.2.3, mkdocs-material-8.2.1">
14+
<meta name="generator" content="mkdocs-1.2.3, mkdocs-material-8.2.5">
1515

1616

1717

1818
<title>qlient</title>
1919

2020

2121

22-
<link rel="stylesheet" href="/python-qlient/assets/stylesheets/main.e8d9bf0c.min.css">
22+
<link rel="stylesheet" href="/python-qlient/assets/stylesheets/main.2d9f7617.min.css">
2323

2424

2525
<link rel="stylesheet" href="/python-qlient/assets/stylesheets/palette.e6a45f82.min.css">
@@ -30,8 +30,9 @@
3030

3131

3232

33+
3334
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
34-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback">
35+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
3536
<style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
3637

3738

@@ -436,7 +437,7 @@ <h1>404 - Not found</h1>
436437
<script id="__config" type="application/json">{"base": "/python-qlient/", "features": [], "translations": {"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing", "select.version.title": "Select version"}, "search": "/python-qlient/assets/javascripts/workers/search.bd0b6b67.min.js"}</script>
437438

438439

439-
<script src="/python-qlient/assets/javascripts/bundle.8aa65030.min.js"></script>
440+
<script src="/python-qlient/assets/javascripts/bundle.467223ff.min.js"></script>
440441

441442

442443
</body>

site/assets/javascripts/bundle.8aa65030.min.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

site/assets/javascripts/bundle.8aa65030.min.js.map

Lines changed: 0 additions & 8 deletions
This file was deleted.

site/assets/stylesheets/main.e8d9bf0c.min.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

site/assets/stylesheets/main.e8d9bf0c.min.css.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

site/examples/full_settings.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
import json
2+
13
from qlient import Settings, Client
24

35
my_settings = Settings(
46
introspect=True, # default, enable backend schema introspection
57
validate_fields=True, # default, enable query field selection validation
6-
validate_variables=True # default, enable query variable validation
8+
validate_variables=True, # default, enable query variable validation,
9+
json_dumps=json.dumps, # default, use python's builtin json.dumps for internal dumping
10+
json_loads=json.loads, # default, use python's builtin json.loads for internal loading
711
)
812

913
my_client = Client("https://...", settings=my_settings)

site/examples/project_batches/index.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
<link rel="canonical" href="https://qlient-org.github.io/python-qlient/examples/project_batches/">
1414

1515
<link rel="icon" href="../../assets/images/favicon.png">
16-
<meta name="generator" content="mkdocs-1.2.3, mkdocs-material-8.2.1">
16+
<meta name="generator" content="mkdocs-1.2.3, mkdocs-material-8.2.5">
1717

1818

1919

2020
<title>Project batches - qlient</title>
2121

2222

2323

24-
<link rel="stylesheet" href="../../assets/stylesheets/main.e8d9bf0c.min.css">
24+
<link rel="stylesheet" href="../../assets/stylesheets/main.2d9f7617.min.css">
2525

2626

2727
<link rel="stylesheet" href="../../assets/stylesheets/palette.e6a45f82.min.css">
@@ -32,8 +32,9 @@
3232

3333

3434

35+
3536
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
36-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback">
37+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
3738
<style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
3839

3940

@@ -415,6 +416,7 @@
415416
<h1>Project batches</h1>
416417

417418
<p><a href="https://circleci.com/gh/qlient-org/python-qlient"><img alt="qlient-org" src="https://circleci.com/gh/qlient-org/python-qlient.svg?style=svg" /></a>
419+
<a href="https://deepsource.io/gh/qlient-org/python-qlient/?ref=repository-badge"><img alt="DeepSource" src="https://deepsource.io/gh/qlient-org/python-qlient.svg/?label=resolved+issues&amp;token=WQWScZui5Jy-cNg3fzvWxqhW" /></a>
418420
<a href="https://pypi.python.org/pypi/qlient"><img alt="pypi" src="https://img.shields.io/pypi/v/qlient.svg" /></a>
419421
<a href="https://github.com/qlient-org/python-qlient"><img alt="versions" src="https://img.shields.io/pypi/pyversions/qlient.svg" /></a>
420422
<a href="https://github.com/qlient-org/python-qlient/blob/master/LICENSE"><img alt="license" src="https://img.shields.io/github/license/qlient-org/python-qlient.svg" /></a></p>
@@ -451,7 +453,7 @@ <h1>Project batches</h1>
451453
<script id="__config" type="application/json">{"base": "../..", "features": [], "translations": {"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing", "select.version.title": "Select version"}, "search": "../../assets/javascripts/workers/search.bd0b6b67.min.js"}</script>
452454

453455

454-
<script src="../../assets/javascripts/bundle.8aa65030.min.js"></script>
456+
<script src="../../assets/javascripts/bundle.467223ff.min.js"></script>
455457

456458

457459
</body>

site/examples/script_legend/index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
<link rel="canonical" href="https://qlient-org.github.io/python-qlient/examples/script_legend/">
1414

1515
<link rel="icon" href="../../assets/images/favicon.png">
16-
<meta name="generator" content="mkdocs-1.2.3, mkdocs-material-8.2.1">
16+
<meta name="generator" content="mkdocs-1.2.3, mkdocs-material-8.2.5">
1717

1818

1919

2020
<title>Script legend - qlient</title>
2121

2222

2323

24-
<link rel="stylesheet" href="../../assets/stylesheets/main.e8d9bf0c.min.css">
24+
<link rel="stylesheet" href="../../assets/stylesheets/main.2d9f7617.min.css">
2525

2626

2727
<link rel="stylesheet" href="../../assets/stylesheets/palette.e6a45f82.min.css">
@@ -32,8 +32,9 @@
3232

3333

3434

35+
3536
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
36-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback">
37+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
3738
<style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
3839

3940

@@ -448,7 +449,7 @@ <h1>Script legend</h1>
448449
<script id="__config" type="application/json">{"base": "../..", "features": [], "translations": {"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing", "select.version.title": "Select version"}, "search": "../../assets/javascripts/workers/search.bd0b6b67.min.js"}</script>
449450

450451

451-
<script src="../../assets/javascripts/bundle.8aa65030.min.js"></script>
452+
<script src="../../assets/javascripts/bundle.467223ff.min.js"></script>
452453

453454

454455
</body>

site/examples/simple_client_instantiation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
client = Client("https://swapi-graphql.netlify.app/.netlify/functions/index")
44

5-
assert isinstance(client.schema, Schema)
6-
assert isinstance(client.backend, HTTPBackend)
5+
isinstance(client.schema, Schema)
6+
isinstance(client.backend, HTTPBackend)

0 commit comments

Comments
 (0)