wp-graphql-woocommerce icon indicating copy to clipboard operation
wp-graphql-woocommerce copied to clipboard

Query orders return empty response

Open Sylvesterx1 opened this issue 1 year ago • 3 comments

When I query orders from wordpress dashboard then I see correct response.

I know query orders is restricted.

I build headless admin, and I want get all orders as admin user. For this I generate public_key and secret_key with admin privilages.

I try add in headers, also in postman I try switch to oAuth 1.0 and here I provide consumer key and private key. But still I see empty result.

How can I query orders as admin without need get woocommerce session ? (i need get all orders created in system from all customers).

For REST API I can include public_key and secret_key and I see correct response all orders. I need do the same using graphql.

Sylvesterx1 avatar Mar 08 '24 17:03 Sylvesterx1

The query does not work on my end either, im using 0.19. I also get responses with the rest api, but no responses with the grapqhl query

/wp-json/wc/v3/[email protected] will give me a response

query getOrders ($billingEmail: String) {
 orders(where: { billingEmail: $billingEmail }) {
        nodes {
          date
	    total
	    status
        }
    }
}

wont

ZeroPie avatar Jun 04 '24 21:06 ZeroPie