Title

タイトル。

TVシリーズや劇場版、OVAタイトルなどのアニメ作品をあらわします。

GraphQL Schema definition

  • type Title implements Node {
  • id: ID!
  • # タイトルに含まれるエピソード。
  • #
  • # Arguments
  • # first: Returns the first _n_ elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified global ID.
  • # last: Returns the last _n_ elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified global ID.
  • episodes(
  • # Returns the first _n_ elements from the list.
  • first: Int
  • ,
  • # Returns the elements in the list that come after the specified global ID.
  • after: String
  • ,
  • # Returns the last _n_ elements from the list.
  • last: Int
  • ,
  • # Returns the elements in the list that come before the specified global ID.
  • before: String
  • ): EpisodeConnection
  • # 放送開始日(YYYY-MM-DD)。
  • airedFrom: Date
  • # 放送終了日(YYYY-MM-DD)。
  • airedTo: Date
  • # 作成日時。
  • createdAt: DateTime!
  • # データベースID。データベースにおけるプライマリキー。
  • databaseId: Int!
  • # Twitterハッシュタグのリスト。
  • hashtags: [String]!
  • # 作品名。
  • name: String!
  • # 作品名の読み仮名。
  • nameKana: String!
  • # メディア。作品の初出媒体。
  • originalMedia: Media!
  • # タイトルに属するエピソードに対する視聴ログの総数。
  • totalLogsCount: Int!
  • # タイトルのURL。
  • url: String!
  • }

Require by