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

Print QueryBuilder derived classes in GraphQL-syntax #21

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions gqlrequests/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ def __setattr__(cls, name, value):

super().__setattr__("_resolved_fields", old_fields)

def __str__(cls):
output = f"type {cls.__name__} {{\n"
for key, value in cls._resolved_fields.items():
output += f" {key}: {value.__name__}\n"
output += "}\n"
return output

class QueryBuilder(metaclass=QueryBuilderMeta):
"""An abstract class used to build GraphQL queries.

Expand Down
36 changes: 35 additions & 1 deletion tests/test_creating_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,38 @@ class InvalidType(gqlrequests.QueryBuilder):

def test_invalid_type_throws_value_error():
with pytest.raises(ValueError) as e:
InvalidType().build()
InvalidType().build()


def test_string_representation_of_class_shows_graphql_syntax():
class EveryType(gqlrequests.QueryBuilder):
id: int
age: int
money: float
name: str
company: bool

correct_string = """
type EveryType {
id: int
age: int
money: float
name: str
company: bool
}
"""[1:]
assert str(EveryType) == correct_string

def test_string_representation_of_nested_class_shows_graphql_syntax():
correct_string = """
type NestedType {
something: SomethingType
}
"""[1:]
class SomethingType(gqlrequests.QueryBuilder):
id: int

class NestedType(gqlrequests.QueryBuilder):
something: SomethingType

assert str(NestedType) == correct_string
Loading