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

Refactor DSL code #169

Merged
merged 23 commits into from
Nov 21, 2020
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
246df96
DSL Refactor 1
leszekhanusz Nov 6, 2020
9d501a3
DSL Refactor 2
leszekhanusz Nov 6, 2020
921ea69
DSL Refactor 3
leszekhanusz Nov 7, 2020
8d34d31
DSL Refactor 4
leszekhanusz Nov 7, 2020
2b80179
Fix annotations for python 3.6
leszekhanusz Nov 7, 2020
79b082b
DSL Refactor 5
leszekhanusz Nov 7, 2020
c926a3d
DSL Refactor 6
leszekhanusz Nov 7, 2020
e0c7e34
DSL Refactor 7
leszekhanusz Nov 7, 2020
5e130cf
DOC document the dsl code
leszekhanusz Nov 8, 2020
0ffe5b9
DSL Refactor 8
leszekhanusz Nov 8, 2020
7406c7a
Merge branch 'master' into refactor_dsl
leszekhanusz Nov 8, 2020
dca2832
DOCS adding sphinx docs for the DSL module
leszekhanusz Nov 8, 2020
7501c17
Fix typo and modify doc following @KingDarBoja advice
leszekhanusz Nov 8, 2020
9974899
Add alias to selection as keyword argument at DSL
KingDarBoja Nov 8, 2020
db654f9
small cleaning
leszekhanusz Nov 11, 2020
fa8e0fe
Remove GraphQLTypeWithFields alias
leszekhanusz Nov 12, 2020
ec57e46
Rephrase DSLType comment
leszekhanusz Nov 12, 2020
2b8f985
fix _get_arg_serializer typing
leszekhanusz Nov 12, 2020
49eecd3
Really Fix nested input arguments this time
leszekhanusz Nov 12, 2020
dbfc221
The _get_arg_serializer method is not needed...
leszekhanusz Nov 13, 2020
3201c05
Allow aliases as keyword arguments for dsl_gql + new operation_name a…
leszekhanusz Nov 14, 2020
27e0eb7
Another refactor to allow multiple operations in documents
leszekhanusz Nov 14, 2020
a2d56d9
Merge branch 'master' into refactor_dsl
leszekhanusz Nov 21, 2020
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
4 changes: 2 additions & 2 deletions docs/modules/client.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Client
======
gql.client
==========

.. currentmodule:: gql.client

Expand Down
7 changes: 7 additions & 0 deletions docs/modules/dsl.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
gql.dsl
=======

.. currentmodule:: gql.dsl

.. automodule:: gql.dsl
:member-order: bysource
1 change: 1 addition & 0 deletions docs/modules/gql.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ Sub-Packages

client
transport
dsl
4 changes: 2 additions & 2 deletions docs/modules/transport.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Transport
=========
gql.transport
=============

.. currentmodule:: gql.transport

Expand Down
Loading