Files
commerce/framework/woocommerce/wp/queries/get-customer-id-query.ts
2021-09-18 00:52:28 +03:00

9 lines
140 B
TypeScript

export const getCustomerQuery = /* GraphQL */ `
query getCustomerId {
customer {
id
}
}
`
export default getCustomerQuery