GraphQL : Retrieve Order with note attribute

Hi,

I am using a Shopify App that is adding values to note_attribute of orders (datetime picking app)

https://apps.shopify.com/order-delivery-date-by-identixweb?surface_detail=delivery+date&surface_inter_position=1&

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

try with:

customAttributes { key value }

1 Like