2016-09-12 07:47:34 +03:00
|
|
|
Interfaces
|
|
|
|
==========
|
|
|
|
|
2018-06-16 17:10:32 +03:00
|
|
|
An *Interface* is an abstract type that defines a certain set of fields that a
|
|
|
|
type must include to implement the interface.
|
2016-09-12 07:47:34 +03:00
|
|
|
|
2018-06-16 17:10:32 +03:00
|
|
|
For example, you can define an Interface ``Character`` that represents any
|
|
|
|
character in the Star Wars trilogy:
|
2016-09-12 07:47:34 +03:00
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
import graphene
|
|
|
|
|
|
|
|
class Character(graphene.Interface):
|
2018-06-16 17:10:32 +03:00
|
|
|
id = graphene.ID(required=True)
|
|
|
|
name = graphene.String(required=True)
|
|
|
|
friends = graphene.List(lambda: Character)
|
|
|
|
|
|
|
|
|
|
|
|
Any ObjectType that implements ``Character`` will have these exact fields, with
|
|
|
|
these arguments and return types.
|
|
|
|
|
|
|
|
For example, here are some types that might implement ``Character``:
|
|
|
|
|
|
|
|
.. code:: python
|
2016-09-12 07:47:34 +03:00
|
|
|
|
2016-11-21 19:41:35 +03:00
|
|
|
class Human(graphene.ObjectType):
|
2016-09-12 07:47:34 +03:00
|
|
|
class Meta:
|
|
|
|
interfaces = (Character, )
|
|
|
|
|
2018-06-16 17:10:32 +03:00
|
|
|
starships = graphene.List(Starship)
|
|
|
|
home_planet = graphene.String()
|
2016-09-12 07:47:34 +03:00
|
|
|
|
2016-11-21 19:41:35 +03:00
|
|
|
class Droid(graphene.ObjectType):
|
2016-09-12 07:47:34 +03:00
|
|
|
class Meta:
|
|
|
|
interfaces = (Character, )
|
|
|
|
|
2018-06-16 17:10:32 +03:00
|
|
|
primary_function = graphene.String()
|
2016-09-12 07:47:34 +03:00
|
|
|
|
|
|
|
|
2018-06-16 17:10:32 +03:00
|
|
|
Both of these types have all of the fields from the ``Character`` interface,
|
|
|
|
but also bring in extra fields, ``home_planet``, ``starships`` and
|
|
|
|
``primary_function``, that are specific to that particular type of character.
|
2016-09-12 07:47:34 +03:00
|
|
|
|
2018-06-16 17:10:32 +03:00
|
|
|
The full GraphQL schema defition will look like this:
|
2016-09-12 07:47:34 +03:00
|
|
|
|
2016-09-25 15:01:12 +03:00
|
|
|
.. code::
|
2016-09-12 07:47:34 +03:00
|
|
|
|
|
|
|
interface Character {
|
2018-06-16 17:10:32 +03:00
|
|
|
id: ID!
|
|
|
|
name: String!
|
|
|
|
friends: [Character]
|
|
|
|
}
|
|
|
|
|
|
|
|
type Human implements Character {
|
|
|
|
id: ID!
|
|
|
|
name: String!
|
|
|
|
friends: [Character]
|
|
|
|
starships: [Starship]
|
|
|
|
homePlanet: String
|
2016-09-12 07:47:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type Droid implements Character {
|
2018-06-16 17:10:32 +03:00
|
|
|
id: ID!
|
|
|
|
name: String!
|
|
|
|
friends: [Character]
|
|
|
|
primaryFunction: String
|
2016-09-12 07:47:34 +03:00
|
|
|
}
|
|
|
|
|
2018-06-16 17:10:32 +03:00
|
|
|
Interfaces are useful when you want to return an object or set of objects,
|
|
|
|
which might be of several different types.
|
|
|
|
|
|
|
|
For example, you can define a field ``hero`` that resolves to any
|
|
|
|
``Character``, depending on the episode, like this:
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
class Query(graphene.ObjectType):
|
|
|
|
hero = graphene.Field(
|
|
|
|
Character,
|
|
|
|
required=True,
|
2018-06-17 13:23:08 +03:00
|
|
|
episode=graphene.Int(required=True)
|
2018-06-16 17:10:32 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
def resolve_hero(_, info, episode):
|
|
|
|
# Luke is the hero of Episode V
|
|
|
|
if episode == 5:
|
|
|
|
return get_human(name='Luke Skywalker')
|
|
|
|
return get_droid(name='R2-D2')
|
|
|
|
|
2018-06-17 13:23:08 +03:00
|
|
|
schema = graphene.Schema(query=Query, types=[Human, Droid])
|
|
|
|
|
2018-06-16 17:10:32 +03:00
|
|
|
This allows you to directly query for fields that exist on the Character interface
|
2018-10-30 15:23:29 +03:00
|
|
|
as well as selecting specific fields on any type that implements the interface
|
2018-06-16 17:10:32 +03:00
|
|
|
using `inline fragments <https://graphql.org/learn/queries/#inline-fragments>`_.
|
|
|
|
|
|
|
|
For example, the following query:
|
|
|
|
|
|
|
|
.. code::
|
|
|
|
|
2018-06-17 13:23:08 +03:00
|
|
|
query HeroForEpisode($episode: Int!) {
|
2018-06-16 17:10:32 +03:00
|
|
|
hero(episode: $episode) {
|
|
|
|
__typename
|
|
|
|
name
|
|
|
|
... on Droid {
|
|
|
|
primaryFunction
|
|
|
|
}
|
|
|
|
... on Human {
|
|
|
|
homePlanet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Will return the following data with variables ``{ "episode": 4 }``:
|
|
|
|
|
|
|
|
.. code:: json
|
|
|
|
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"hero": {
|
|
|
|
"__typename": "Droid",
|
|
|
|
"name": "R2-D2",
|
|
|
|
"primaryFunction": "Astromech"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
And different data with the variables ``{ "episode": 5 }``:
|
|
|
|
|
|
|
|
.. code:: json
|
|
|
|
|
|
|
|
{
|
|
|
|
"data": {
|
|
|
|
"hero": {
|
|
|
|
"__typename": "Human",
|
|
|
|
"name": "Luke Skywalker",
|
|
|
|
"homePlanet": "Tatooine"
|
|
|
|
}
|
|
|
|
}
|
2016-09-12 07:47:34 +03:00
|
|
|
}
|
2018-06-17 13:23:08 +03:00
|
|
|
|
|
|
|
Resolving data objects to types
|
|
|
|
-------------------------------
|
|
|
|
|
2018-06-17 14:05:34 +03:00
|
|
|
As you build out your schema in Graphene it's common for your resolvers to
|
2018-06-17 13:23:08 +03:00
|
|
|
return objects that represent the data backing your GraphQL types rather than
|
2018-06-17 14:05:34 +03:00
|
|
|
instances of the Graphene types (e.g. Django or SQLAlchemy models). This works
|
|
|
|
well with ``ObjectType`` and ``Scalar`` fields, however when you start using
|
|
|
|
Interfaces you might come across this error:
|
2018-06-17 13:23:08 +03:00
|
|
|
|
|
|
|
.. code::
|
|
|
|
|
|
|
|
"Abstract type Character must resolve to an Object type at runtime for field Query.hero ..."
|
|
|
|
|
|
|
|
This happens because Graphene doesn't have enough information to convert the
|
|
|
|
data object into a Graphene type needed to resolve the ``Interface``. To solve
|
|
|
|
this you can define a ``resolve_type`` class method on the ``Interface`` which
|
|
|
|
maps a data object to a Graphene type:
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
class Character(graphene.Interface):
|
|
|
|
id = graphene.ID(required=True)
|
|
|
|
name = graphene.String(required=True)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def resolve_type(cls, instance, info):
|
|
|
|
if instance.type == 'DROID':
|
|
|
|
return Droid
|
|
|
|
return Human
|