Multioperation GraphQL query

Is there a way to specify operation name for a multioperation GraphQL query?

query UserName {
    user {
        name
    }
}

query PostTitle {
    post {
        title
    }
}

I see in postman-collection code there is an operationName property prepared to accept it. But Iā€™m not seeing any way to get the app to set a value.