When I spin up graphql and test a simple query it works fine
query { Capability { ID } }
But put a pagination directive in to bring back the first two and the server barfs
query { Capability (first: 2) { ID } }
I think the problem is that the integer is being interpreted as a float be good to get someone else to confirm the observation or recogmend a possible solution
ERROR
{
"errors": [
{
"message": "LIMIT: Invalid input. '2.0' is not a valid value. Must be a non-negative integer.",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"Capability"
],
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"exception": {
"code": "Neo.ClientError.Statement.ArgumentError",
"name": "Neo4jError",
"stacktrace": [
"Neo4jError: LIMIT: Invalid input. '2.0' is not a valid value. Must be a non-negative integer.",
"",