I'm learning how to use GraphQL and python. I've found the graphene project along with it's SQLAlchemy and Flask extensions. I've been reading tutorials and docs and I'm having trouble figuring out what class Meta
is used for when defining a schema. I'm currently following this tutorial. I've googled around and can't seem to find anything.
Here's some code from the tutorial. I've commented on the line that's confusing me.
from graphene_sqlalchemy import SQLAlchemyObjectType from database.model_people import ModelPeople import graphene # Create a generic class to mutualize description of people attributes for both queries and mutations class PeopleAttribute: name = graphene.String(description="Name of the person.") height = graphene.String(description="Height of the person.") mass = graphene.String(description="Mass of the person.") hair_color = graphene.String(description="Hair color of the person.") skin_color = graphene.String(description="Skin color of the person.") eye_color = graphene.String(description="Eye color of the person.") birth_year = graphene.String(description="Birth year of the person.") gender = graphene.String(description="Gender of the person.") planet_id = graphene.ID(description="Global Id of the planet from which the person comes from.") url = graphene.String(description="URL of the person in the Star Wars API.") class People(SQLAlchemyObjectType, PeopleAttribute): """People node.""" # ---------- What's this class used for? Which part of the flask + graphene + sqlalchemy ecosystem uses it? class Meta: model = ModelPeople interfaces = (graphene.relay.Node,)
I am in the same boat as you. Probably a little late for you but for anyone else running into this same question this is what I found when I was learning about GraphQL and Graphene.
I was confused about the subclass
Meta
class as well. This is what the documentation states.https://docs.graphene-python.org/en/latest/types/objecttypes/#objecttype-configuration-meta-class
The Meta class essentially allows you to change/modify the attributes of the class. For example you can change the name of how you would query that particular class by setting the
name = <short name of class>
.The example they use is this..
So instead of having to query the "MyGraphQlSong" you can query it via "Song".
You can also add other things such as Description, and the interfaces that your parent class is supposed to inherit from (all described in the link above).
The full list of attributes you can change/modify are in the API reference (this is specific to the ObjectType. Other types have other meta class options. It is explained in more detail here. https://docs.graphene-python.org/en/latest/api/
I had issues finding where "model = ..." was coming from in the SQLAlchemy examples. I could not find any documentation referencing what "model" meant but my guess was that since
SQLAlchemyObjectType
is a subclass ofObjectType
,SQLAlchemyObjectType
added a few of its own "options" that aren't really documented (as far as I can tell). I went and read through the source code and sure enough I found this reference to "model = ..."https://github.com/graphql-python/graphene-sqlalchemy/blob/master/graphene_sqlalchemy/types.py#L174
The
SQLAlchemyObjectType
class adds three more options, model, registry, and connection. If you look through the code themodel
option is your SQLAlchemy model class. TheSQLAlchemyObjectType
class uses the model option to inspect your model and create your respective fields automatically.Hopefully this saves some other people time from having to look this up.