OPERATION_DOCUMENT

The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:

subscription ConcentrationSubscription($moleculeName: String!) {
simulation {
time
environment {
nodes {
getConcentration(molecule: {
name: $moleculeName
}
)
}
}
}
}