_This issue is a feature discussion._
For now, the way to write a ObjectType is as below:
class Hero(ObjectType):
name = Field(List(String), only_first_name=Boolean())
age = Int()
def resolve_name(self, info, only_first_name=False):
if only_first_name:
return [self._first_name]
return [self._first_name, self._last_name]
def resolve_age(self, info):
return self._age
I define name twice (Hero.name and Hero.resolve_name) because I have to define types of arguments and return value. This will cause some reading and writing problems.
Since python3, annotation feature bring a native way to describe types. By using annotation, we can rewrite this class with a clearer way:
class Heroine(AnnotationObjectType):
def name(self, info, only_first_name: Boolean() = False) -> List(String):
if only_first_name:
return [self._first_name]
return [self._first_name, self._last_name]
def age(self, info) -> Int():
return self._age
print(Heroine.name.__annotations__)
# {'only_first_name': <graphene.types.scalars.Boolean object at 0x104cb8550>, 'return': <graphene.types.structures.List object at 0x105742f28>}
AnnotationObjectType shouldn't be difficult to write if we somehow transform it into ObjectType. But I think a looooot of cases should be tested before being released.
Of cause even if we write an AnnotationObjectType class, ObjectType class will not be dropped since python2.7 doesn't support annotation.
I would like to hear you guys' comments and suggestions before doing this.
Very interesting!
I really like this @ocavue ! I had no idea you could do this python annotations. I don't know much about annotations actually but I have a couple of questions:
I think keeping the ObjectType and AnnotatedObjectType separate is essential, not just for keeping python 2.7 compatibility, but also supporting both ways of writing ObjectTypes.
@ekampf @jkimbo Thanks for your like!
@jkimbo Here are my answers for your questions. I'm not very familiar with Graphene nor Annotation. So any corrections are welcome.
How would ObjectTypes work?
When Hero inherit ObjectType, ObjectType and it's base classes' __init_subclass_with_meta__ methods will be called. The main purpose of those __init_subclass_with_meta__ methods is create Hero._meta, who stores almost all information about Hero, like this one:
In [5]: Hero._meta.fields
Out[5]: OrderedDict([
('name', <graphene.types.field.Field at 0x10e6e11d0>),
('age', <graphene.types.field.Field at 0x10e6e1278>)
])
Could you use both ObjectTypes and AnnotatedObjectType's in the same schema?
if AnnotatedObjectType is a subclass of ObjectType, it should be easy to let them in the same schema.
Is there anything that can be expressed in the python type system that can't be expressed in GraphQL (or vice versa)?
The only thing that I can find is that python type can do static check by tools like mypy or pyre. For example:
➜ cat -n test_type.py
1 from typing import List
2
3
4 def process_user(user_ids: List[int]):
5 pass
6
7
8 process_user([1, 2, 3])
9 process_user([4, 5, "NOT_INT"])
➜ mypy .
test_type.py:9: error: List item 2 has incompatible type "str"; expected "int"
But I don't think it's a big deal because of two reasons:
I think keeping the ObjectType and AnnotatedObjectType separate is essential, not just for keeping python 2.7 compatibility, but also supporting both ways of writing ObjectTypes.
Agree! A downward compatibility API is very important. We all know the story about python 2.7 😂.
Thanks for the answers.
How would ObjectTypes work?
I meant could you do something like this:
class Heroine(AnnotationObjectType):
def best_friend(root, info) -> Person:
if only_first_name:
return [self._first_name]
return [self._first_name, self._last_name]
where Person is a normal ObjectType or an Interface
Also I thought of another question: How would you define fields that don't need a resolver?
Currently if you have:
class User(ObjectType):
name = graphene.String(required=True)
and it gets passed an object with an attribute name it will just use grab that data and use it without the need for a resolver. How would you do that with AnnotatedObjectType?
@jkimbo
I do write a simple AnnotationObjectType implementing:
class AnnotationObjectType(ObjectType):
def __init_subclass__(cls, *args, **kwargs):
fields = []
for name, func in cls.__dict__.items():
if name != "Meta" and not name.startswith("__"): # __init__ etc ...
fields.append((name, func))
for name, func in fields:
setattr(cls, "resolve_{}".format(name), func)
setattr(
cls,
name,
Field(func.__annotations__.pop("return"), **func.__annotations__),
)
super().__init_subclass__(*args, **kwargs)
And it works fine for "mix" of AnnotationObjectType, ObjectType and Interface:
query {
hero {
name
wife { # AnnotationObjectType
name ( only_first_name: true )
}
best_friend { # Interface
name ( only_first_name: true )
}
}
heroine {
name
husband { # normal ObjectType
name ( only_first_name: true )
}
best_friend { # Interface
name ( only_first_name: true )
}
}
}
{"hero": {"best_friend": {"name": ["Hope"]},
"name": ["Scott", "Lang"],
"wife": {"name": ["Hope"]}},
"heroine": {"best_friend": {"name": ["Scott"]},
"husband": {"name": ["Scott"]},
"name": ["Hope", "Van", "Dyne"]}}
You can find the entire example in here.
How would you define fields that don't need a resolver?
class User(AnnotationObjectType):
def name(self, info) -> graphene.String(required=True):
pass
class User(ObjectType):
name = graphene.String(required=True)
def resolve_name(self, info):
pass
For my implementing of AnnotationObjectType, these two definitions are equivalent. In other words, we can define this kind of fields with an "empty" function. Not beautiful but it works.
Update: A easier way for writting is as below:
class AnnotationObjectType(ObjectType):
def __init_subclass__(cls, *args, **kwargs):
...
for name, func_or_field in fields:
if is_field(func_or_field):
pass
else:
setattr(cls, "resolve_{}" ...
setattr(cls, name, ...
class User(AnnotationObjectType):
name = graphene.String(required=True)
This is great! I'd love to see first-class support for annotation-based schemas.
One thought: AnnotationObjectType should only take fields that (1) are functions and (2) have return annotations corresponding to Graphene classes. Otherwise, people will be unable to add helper objects/classes to their ObjectTypes. Perhaps functions starting with '_' would be ignored.
@ocavue thanks for opening the discussion.
The new resolution syntax on Graphene 2 root, info, **options was took specially with typing in mind, so it could be very easy to annotate the resolver arguments in the future.
Personally, I do really like the way NamedTuple works in the typing package for defining the attributes for the named tuple: https://docs.python.org/3/library/typing.html#typing.NamedTuple
In Python 3.7 onwards, the @dataclass attribute will let the user create a data class very easily: https://www.python.org/dev/peps/pep-0557/
Inspired in all this I think the next version of Graphene (Graphene 3.0) could also allow developers to type their schemas like the following:
(while maintaining 100% compatibility with the previous syntax)
@ObjectType
class Person:
id: str
name: str
last_name: str
def full_name(self, info) -> str:
return f'{self.name} {self.last_name}'
persons_by_id = {
'1': Person(id='1', name='Alice'),
'2': Person(id='2', name='Bob')
}
@ObjectType
class Query:
def get_person(self, info, id: str) -> Person:
'''Get a person by their id'''
return persons_by_id.get(id)
There are some reasons on why I think this is a very powerful syntax:
self in resolvers (currently, on Graphene 2, self is referring to the root object, automatically marking the resolver as a @staticmethod... and sometimes this might be confusing)However, there are some cons of this approach:
Optional[T] = Union[T, None] *, Optional types will need to be explicitly defined and being required will be the default.ObjectType have other attributes annotated (that we don't want to expose to GraphQL) they will be exposed automatically. We can solve this in various ways:_ (private) to GraphQL@ObjectType(skip: ['password'])
class Person:
# ...
password: str
@Connection(node=People)
class ConnectionPeople:
pass
@ObjectType
class Query:
def all_people(self, info, first: int = 10) -> ConnectionPeople:
return ConnectionPeople.get_from_iterable(...)
What are your thoughts?
@syrusakbary Thank's for your comment. It's a beautify syntax. I really like it.
- do not include attributes starting _ (private) to GraphQL
- Add a explicit way of skipping attributes, such as:
I'm ok with those two rules since graphene_sqlalchemy has aleady something similar:
class User(Base):
id = Column(Integer, primary_key=True)
username = Column(String(30), nullable=False, unique=True)
password = Column(String(128), nullable=False)
class User(SQLAlchemyObjectType):
class Meta:
model = User
only_fields = ("id", "username")
We should also consider that someone may do want to add attributes starting _ into GraphQL.
The layering needed between native Python types and GraphQL types will be minimal
if we use native python types, mypy may raise an error when using DataLoader because what DataLoader.load return is a Promise object. How to solve this?
def get_student_names(self, info) -> typing.List(str):
return student_names_dataloader.load(self.__class_id)
python<=3.5 don't support variable annotation syntax. So maybe we can support both syntaxes below:
@ObjectType
class Person:
id: str
@ObjectType
class Person:
id = graphene.String() # current syntax
_(Coming from #886)_
I like the idea in general, but I have a problem in trying to glue together the type systems of GraphQL and Python - or rather, with writing a single statement to describe both at the same time:
@ObjectType
class Collection:
def items(self, min: int = 0, max: int = 10) -> List[Item]:
return get_items(....)
Python type system doesn't let me describe some important aspects of GraphQL type system:
@deprecated, etc)More importantly, there's a certain level of hackyness here: it requires that Python and GQL type systems play very nice together. They probably mostly do, but type systems are always more complicated than they appear, and any little incompatibility will break the abstraction.
@avivey Yeah, those are also my concerns. Using python annotations to define the schema is cute, but will conflict with the intended usage for static type checking. Using typing types to define graphql fields means usurping that API for something it's not intended for. That API might evolve in a direction that is not compatible with GraphQL usage.
That being said, I think a middle ground would be to require explicit flagging of resolvers, and still rely on annotations as much as they remain valid type hints:
@ObjectType
class Collection:
@Field.from_resolver
def items(self, min: int = 0, max: int = 10) -> List[Item]:
""""Some description"""
return get_items(....)
We still need to have a separate way to define any extra information for arguments, fields, types, etc.
Field.from_resolver decorator could extract a description from the resolver docstring. We could expect the docstring to include argument descriptions using a well-defined format.deprecated, could either be specified through decorator arguments(e.g. @Field.from_resolver(deprecated=True)), or through separate decorators, i.e.
@Field.deprecate
@Field.from_resolver
def items(self, min: int = 0, max: int = 10) -> List[Item]: ...
@Field.deprecate_args("name").This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
@ekampf @jlowin @ocavue Was there any progress somewhere on all these great ideas? Should this issue be reopened?
Python type system doesn't let me describe some important aspects of GraphQL type system:
- Description (For fields, arguments, and ObjectTypes)
- Directives (@deprecated, etc)
I discovered this limitation in another project, and I got round it by defining the type within a context manager which then added the extra information at runtime, but didn't interfere at type checking time:
https://github.com/dls-controls/annotypes
I could imagine using a similar trick to write something like:
@ObjectType
class Person:
with Anno("The ID of the person"):
id: str
with Anno("The first name of the person"):
name: str
with Anno("The last name of the person", deprecated=True):
last_name: str
def full_name(self, info) -> str:
return f'{self.name} {self.last_name}'
id_annotation = Person.__annotations__["id"]
print(id_annotation.description) # prints: The ID of the person
print(id_annotation.type) # prints: <class 'str'>
I've written a gist to check this works:
https://gist.github.com/thomascobb/74a09d993172cf9151c576add8062c27
Pydantic is a library for defining data models, used in API frameworks(fastapi for example). It relies heavily on type annotations. Extra information that cannot be put in the type can be added through actual value assignments or through a Config nested class.
@DrPyser this looks very interesting. I assume you would add the description and the deprecated items to a Schema() object? Do Schema() objects and dataclasses work together?
@thomascobb That's a good question: https://pydantic-docs.helpmanual.io/#id1 . Would have to try or look into the code.
Either using something like Pydantic's Schema, or equivalently using dataclass.Field.metadata to store description and deprecation information, would accomplish the same thing.
I prefer that to using context managers, simpler and lighter visually.
Reopening the issue. This seems still useful for the future of Graphene
Looks like someone already thought of combining Pydantic and Graphene...
https://github.com/upsidetravel/graphene-pydantic
Does the @ObjectType decorator already exist in the current version?
Can I turn dataclasses into ObjectTypes with it?
Did I get that right?
I am totally hoping the approach going forward is very much in-line with how pydantic works.
Some of the reasons for this include:
Additionally the graphene-pydantic project could likely get absorbed into the future work.
@Eraldo the @ObjectType decorator doesn't exist yet. Anyone is welcome to try and implement it though.
Also the graphene-pydantic project looks very cool! https://github.com/strawberry-graphql/strawberry also uses dataclasses to define a graphql server.
wow... I didn't know about https://github.com/strawberry-graphql/strawberry ...
( shameless plug) I was thinking about using python-type-extractor to make code-gen that spits out graphene-specialized code...
(it's a lib for creating "type-nodes" from python type-annotations... this provides a nice compat-layer for python 3.6 ~ 3.8)
to see what it does, you can just see how test-fixtures are converted in the tests (too lazy to write docs...)
and
Most helpful comment
@ocavue thanks for opening the discussion.
The new resolution syntax on Graphene 2
root, info, **optionswas took specially with typing in mind, so it could be very easy to annotate the resolver arguments in the future.Personally, I do really like the way
NamedTupleworks in thetypingpackage for defining the attributes for the named tuple: https://docs.python.org/3/library/typing.html#typing.NamedTupleIn Python 3.7 onwards, the
@dataclassattribute will let the user create a data class very easily: https://www.python.org/dev/peps/pep-0557/Inspired in all this I think the next version of Graphene (Graphene 3.0) could also allow developers to type their schemas like the following:
(while maintaining 100% compatibility with the previous syntax)
There are some reasons on why I think this is a very powerful syntax:
selfin resolvers (currently, on Graphene 2,selfis referring to the root object, automatically marking the resolver as a@staticmethod... and sometimes this might be confusing)However, there are some cons of this approach:
Optional[T] = Union[T, None]*, Optional types will need to be explicitly defined and being required will be the default.ObjectTypehave other attributes annotated (that we don't want to expose to GraphQL) they will be exposed automatically. We can solve this in various ways:_(private) to GraphQLWhat are your thoughts?