Retrieve a list of available account products returning the ID to use in other Queries and Mutations as well as other product information.

Note: You can also use pagination as part of this query.

query productList {
	productList {
    id
    title
    description
    price
    image
    oneOff
    term
    note
    customField1
    customField2
    customField3
    customField4
    customField5
    customField6
    customField7
    customField8
    customField9
    customField10
  }
}