OBJECT

Account

Account

link GraphQL Schema definition

  • type Account {
  • brandingColour: String
  • # ID of the Account
  • id: ID!
  • logoUrl: String
  • mainContactEmail: String
  • mainContactMobile: String
  • # name of the Account
  • name: String
  • # Trading bank accounts of the Account
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • tradingBankAccounts(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int
  • ): TradingBankAccountConnection!
  • # Trusts of the Account
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • trusts(after: String, before: String, first: Int, last: Int): TrustConnection!
  • }