No content to show
User Activity
10-12-2023
const {query} = useApi();
useEffect(() => {
query(
`query ($first: Int!) {
customers(first: $first, query: $email) {
edges{
node {
id
firstName
lastName
...
10-11-2023
We are developing a Checkout UI extension to validate the customer's shipping address. Our product can be purchased by logged-in users. We are preventing changes to the customer's shipping address during checkout and only accepting the saved customer...