Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP - Feature/custom codec #16

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
4cab090
Fix error message
ekampf Jan 2, 2019
34536d2
Initial codec implementation
ekampf Jan 2, 2019
d815eeb
Add pth file to auto register the codec
ekampf Jan 2, 2019
1be6b75
reorg code
ekampf Jan 2, 2019
0d44000
Wrap queries in their own namespace
ekampf Jan 2, 2019
30250c0
Refactor
ekampf Jan 2, 2019
aa987b9
Sync client shouldnt be async
ekampf Jan 2, 2019
5b46ae9
Codec example
ekampf Jan 2, 2019
14b7a6f
Merge branch 'master' into feature/custom_codec
ekampf Jan 2, 2019
0623997
Merge branch 'master' into feature/custom_codec
ekampf Jan 2, 2019
bd8029e
Added encpoint to example
ekampf Jan 2, 2019
09156f8
Fix scripts section in project
ekampf Jan 3, 2019
2d0dd2e
Merge branch 'master' into feature/custom_codec
ekampf Jan 3, 2019
1746bdb
lint
ekampf Jan 3, 2019
ac6f8de
Merge branch 'master' into feature/custom_codec
ekampf Jan 3, 2019
221a87a
Fix tests
ekampf Jan 3, 2019
ce546d1
nicer code
ekampf Jan 3, 2019
0d0f6d4
Unnecessary
ekampf Jan 3, 2019
995c2b5
TODOs
ekampf Jan 3, 2019
a6aa951
Merge branch 'master' into feature/custom_codec
ekampf Jan 3, 2019
6d80401
Missing space
ekampf Jan 7, 2019
cab9b6b
Codec synonyms
ekampf Jan 7, 2019
0713f64
Fix usage text
ekampf Jan 7, 2019
c125c2e
More tests
ekampf Jan 8, 2019
2896860
faster register function
ekampf Feb 6, 2019
f7c7d0d
Updated dataclasses-json
ekampf Feb 6, 2019
f056aaa
Support “”” string literals too
ekampf Feb 6, 2019
f827c6b
Errors should be optional
ekampf Feb 6, 2019
52229dd
Ignore .venv
ekampf Feb 6, 2019
81686c6
Simple example showing embedded query
ekampf Feb 6, 2019
6482195
poetry update
ekampf Feb 6, 2019
56f55b8
pylint needs to import codec to work
ekampf Feb 6, 2019
402bf32
nicer code
ekampf Feb 6, 2019
fddcff2
ending newline
ekampf Feb 6, 2019
db3afb2
lint bootstrap.py
ekampf Feb 6, 2019
6787a86
Wrap autogenerated code with comments
ekampf Feb 7, 2019
c342f04
lint
ekampf Feb 7, 2019
c29268c
Decode works
ekampf Feb 7, 2019
eeacb51
fixing gql_decode
ekampf Feb 7, 2019
5885b9a
Fixed example
ekampf Feb 7, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Icon*

# Temporary virtual environment files
/.cache/
/.venv/
.venv

# Temporary server files
.env
Expand Down
6 changes: 6 additions & 0 deletions examples/simple/.gql.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"schema": "http://localhost:5000/graphql",
"endpoint": "http://localhost:5000/graphql",
"documents": "./tests/**/*.gql",
"custom_header_exports": ""
}
Loading