Interface

Suppliers implement the Contacts interface.

Available queries

Associated queryReturns multiple results
Supplier
Suppliers✔️

Available fields

LabelTypeNotesNull
activebooleanIndicates if the supplier is active
addressPostal addressThe supplier's address✔️
changedDateThe date of the supplier's last modification
createdDateThe date of the supplier's creation
currencyCurrencyThe currency used for this supplier✔️
discountdecimal(10,2)The discount applied to the supplier✔️
emailstringThe supplier's email✔️
employeesEmployeesThe supplier's employee✔️
facebookstringThe supplier's facebook page✔️
idintegerThe supplier's id integer, not the supplier's id string
instagramstringThe supplier's instagram page✔️
labelstringThe supplier's label, automatically generated by combining the first and last name
notesstringNotes about the supplier✔️
phonestringThe supplier's phone number✔️
price_levelPrice LevelThe price level used for the supplier. The price level's type must be "purchase"✔️
supplier_idstringThe supplier's id string, not the supplier's machine id
tagsSupplier tagsThe supplier's tags✔️
taxesTaxesThe taxes applied to the supplier✔️
twitterstringThe supplier's twitter page✔️
userUsersThe user who created the supplier
websitestringThe supplier's website✔️

Example of a query

query{
  Suppliers{
    edges{
      node{
        active
        address{
          country
        }
        changed
        created
        currency{
          iso
        }
        discount
        email
        employees{
          edges{
            node{
              id
            }
          }
        }
        facebook
        id
        instagram
        label
        notes
        phone
        price_level{
          id
        }
        supplier_id
        tags{
          edges{
            node{
              id
            }
          }
        }
        taxes{
          edges{
            node{
              id
            }
          }
        }
        twitter
        user{
          id
        }
        website
      }
    }
  }
}