Hi,
I am using a Shopify App that is adding values to note_attribute of orders (datetime picking app)
surface_intra_position=5&surface_type=search
I have succeeded to use the REST endpoint : /orders.json?ids=… to get the note attribute of the order (and so get the datetime delivery choosen by the client)
Now, I need to access the note_attribute through graphQL.
I have been trying to use the the following request :
customer(customerAccessToken: $customerAccessToken) {
id
orders(after:$cursor, first: $pageSize, sortKey:PROCESSED_AT) {
pageInfo {
hasNextPage
hasPreviousPage
}
edges {
cursor
node {
id
processedAt …
Which is working, but it seems there is no way to retrieve note attribute through graphql ?
Do you have any clues how I can do it ?
Regards