Mutation Schemas Documentation¶
This is the documentation for the Mutation schemas.
Favorites Schema¶
FAVORITESSCHEMA
module-attribute
¶
FAVORITESSCHEMA = f'
anime {
edges {
id
node {
id
{TITLESCHEMA}
}
}
nodes {
id
{TITLESCHEMA}
}
}
manga {
edges {
id
node {
id
{TITLESCHEMA}
}
}
nodes {
id
{TITLESCHEMA}
}
}
characters {
edges {
id
node {
id
name {
full
}
}
}
nodes {
id
name {
full
}
}
}
staff {
edges {
id
node {
id
name {
full
}
}
}
nodes {
id
name {
full
}
}
}
studios {
edges {
id
node {
id
name
}
}
nodes {
id
name
}
}
'
FavouritesSchema is a string representing the GraphQL schema for a favourites query. It includes the anime, manga, characters, staff, and studios schema.
ATTRIBUTE | DESCRIPTION |
---|---|
anime |
The anime schema of the favourites.
TYPE:
|
manga |
The manga schema of the favourites.
TYPE:
|
characters |
The characters schema of the favourites.
TYPE:
|
staff |
The staff schema of the favourites.
TYPE:
|
studios |
The studios schema of the favourites.
TYPE:
|