Retrieve Lending Products for my Company

query getAllLenders {
  fetchFinanceMethodList(input: { filter: { isActive: true } }) {
    items {
      id
      label
      financeMethod
    }
  }
}

query getAllLendersandProducts {
  fetchFinanceMethodList(input: { filter: { isActive: true } }) {
    items {
      id
      label
      financeMethod
      financeProducts{
        id
        name
        status
        termMonths
        dealerFeePercent
      }
    }
  }
}
query getAllFinanceProductsforOneFinanceMethod {
  fetchFinanceProductList(
    financeMethod: "NonIntegratedLenderFinancePlugin:2ea777ee-7de9-49f7-9183-fbff253da16c"
  ) {
    items {
      id
      name
      status
      termMonths
      dealerFeePercent
      originalName
      originalDealerFeePercent
      customFields
      financeProductTargetings {
        id
      }
      financeQuoteType
    }
    pageSize
    currentPage
    totalItemCount
    totalPageCount
  }
}