OBJECT

Client

link GraphQL Schema definition

  • type Client {
  • # The contacts associated with this client
  • contacts: [Contact!]!
  • # The user's unique Consonance identifier
  • id: Int!
  • # The client account name
  • name: String!
  • # A list of the exchange rates of currencies to the Euro held in Consonance,
  • # sourced from the openexchangerates.org API
  • priceExchangeRates: [CurrencyExchangeRate!]
  • # The number of products in the account
  • productsCount: Int!
  • # A list of the price components the client maintains in Consonance
  • standardPriceComponents: [StandardPriceComponents!]!
  • # The number of works in the account
  • worksCount: Int!
  • }