We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
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/orders?email=zeropie@zeropie.com will give me a response
query getOrders ($billingEmail: String) { orders(where: { billingEmail: $billingEmail }) { nodes { date total status } } }
wont
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: