Order number in Graphql API

Just for not, although it doesnt seem to apear in postman this will work on 2025-07

query Orders {
    orders(first: 250, reverse: true, after: null) {
        nodes {
            id
            createdAt
            name
            number
            tags
            customerJourney {
                customerOrderIndex
                daysToConversion
            }
        }
    }
}