createGasMeterReadings
Create gas meter reading(s) with the given value(s) for the given MaLo.
This field requires the Authorization header to be set.
Arguments
Input fields for creating meter readings for a customer.
Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation CreateGasMeterReadings($input: ReadingsInput!) {
createGasMeterReadings(input: $input) {
numberOfReadingsCreated
readingDate
}
}
Variables
{
"input": ReadingsInput
}
Response
{
"data": {
"createGasMeterReadings": {
"numberOfReadingsCreated": 100,
"readingDate": "2020-06-25"
}
}
}