How to Get all invoices, orders and price quote for a contactId?

Question:
I am trying to get all the Price Quotes for a specific customerID

Product:
[ Wix Editor, Wix Studio Editor.]

What are you trying to achieve:
I need the list of PriceQuote by ContactID

What have you already tried:
I have tested the following backend code:

import { priceQuotes } from "wix-billing-backend";

export const getPriceQuote = webMethod(Permissions.Anyone, (id) => {
  return priceQuotes.getPriceQuote(id);
});

the backend function work fine but I have no the PriceQuote id access since i don“t have the list of Price Quotes

I need to know how to get the PriceQuotes list and the methods to query by ContactID

Additional information:
the same functionality is needes for Invoices and orders to query the wix billing database by CustomerID