User

qnypのユーザーアカウント。

GraphQL Schema definition

  • type User implements Node {
  • id: ID!
  • # ユーザーの視聴ログ。
  • #
  • # Arguments
  • # first: リストの最初のn件を返す(1〜100)。
  • # after: ここで指定したカーソルよりも後の要素を返す。
  • # last: リストの最後のn件を返す(1〜100)。
  • # before: ここで指定カーソルよりも前の要素を返す。
  • # channels: 視聴ログを絞り込むための視聴媒体のリスト
  • #
  • # 。
  • # ratings: 視聴ログを絞り込むための評価のリスト。
  • logs(
  • # リストの最初のn件を返す(1〜100)。
  • first: Int
  • ,
  • # ここで指定したカーソルよりも後の要素を返す。
  • after: String
  • ,
  • # リストの最後のn件を返す(1〜100)。
  • last: Int
  • ,
  • # ここで指定カーソルよりも前の要素を返す。
  • before: String
  • ,
  • # 視聴ログを絞り込むための視聴媒体のリスト
  • #
  • # 。
  • channels: [Channel]
  • ,
  • # 視聴ログを絞り込むための評価のリスト。
  • ratings: [Rating]
  • ): LogConnection
  • # ユーザーが最近見たタイトル。20件まで。
  • #
  • # 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.
  • recentlyWatchedTitles(
  • # 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
  • ): TitleConnection
  • # サインアップ日時。
  • createdAt: DateTime!
  • # データベースID。データベースにおけるプライマリキー。
  • databaseId: Int!
  • # UIに利用する言語。
  • language: Language!
  • # 名前。
  • name: String!
  • # プロフィール画像URL。
  • profileImageURL: String!
  • # プロフィールページのURL。
  • url: String!
  • # ユーザー名。全ユーザーで一意。
  • username: String!
  • }

Require by