Skip to content

Commit

Permalink
feat: add music producer to graphql endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
santi committed Feb 18, 2019
1 parent 69d3fad commit b079092
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions api_graphql/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@


class CategoryType(graphene.ObjectType):
"""
Category description
"""

id = graphene.Int()
name = graphene.String()
Expand All @@ -23,13 +20,11 @@ class SettingsType(graphene.ObjectType):
about = graphene.String()
chief_editor = graphene.String()
radio_editor = graphene.String()
music_producer = graphene.String()
privacy_policy = graphene.String()


class PostType(graphene.ObjectType):
"""
Post description
"""

id = graphene.Int()
title = graphene.String()
Expand Down Expand Up @@ -79,9 +74,6 @@ class PostPaginatedType(graphene.ObjectType):


class ShowType(graphene.ObjectType):
"""
Show description
"""

id = graphene.Int()
name = graphene.String()
Expand Down

0 comments on commit b079092

Please sign in to comment.