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
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Rephrase DSLType comment
  • Loading branch information
leszekhanusz committed Nov 12, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit ec57e4615931c17395ac11cd928be76d6057078d
2 changes: 1 addition & 1 deletion gql/dsl.py
Original file line number Diff line number Diff line change
@@ -138,8 +138,8 @@ class DSLType:
"""The DSLType represents a GraphQL type for the DSL code.

It can be a root type (Query, Mutation or Subscription).
Or it can be any other object type (Human in the StarWars schema).
Or it can be an interface type (Character in the StarWars schema).
Or it can be an object type (Human in the StarWars schema).

Instances of this class are generated for you automatically as attributes
of the :class:`DSLSchema`