Schema Documentation

increaseCount

Description

Increase the count.

Response

Returns an Int

Arguments
NameDescription
count - Int The count to increase

Example

Query
mutation increaseCount($count: Int) {  increaseCount(count: $count)}
Variables
{"count":123}
Response
{"data":{"increaseCount":123}}