read line_items properties using GraphQL

If I download the order JSON from here:
https://admin.shopify.com/store//orders.json

I can see the “properties” for each “line_items”,

but how can I access this data over GraphQL? Properties are not listed under LineItem here:

https://shopify.dev/docs/api/admin-graphql/latest/objects/LineItem

Found it myself… They’re under customAttributes

query{orders(first:10,query:“status:open”){edges{node{id name confirmed lineItems(first:100){edges{node{id name title sku quantity customAttributes{key value} variantTitle}}}}}}}