User

Users are the accounts created when someone signs up or connects their wallet to a Parcel marketplace.

type User {
  id: Int!
  created_at: Date!
  last_login: Date!
  wallets: [Wallet!]
}

Fields

User.created_at Date!

The date at which the user first signed up to Parcel.

User.id Int!

A unique indentifier.

User.last_login Date!

The date at which the user last logged in to a Parcel marketplace.

User.wallets [Wallet!]

A list of wallets associated with the user.