Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

There is no validation of parameter types #160

Closed
@opomuc

Description

@opomuc

This query will be successfull:

query service_query_with_skip($uid: Long, $ignore: Boolean) {
  services(uid: $uid) {
    uid
    p1
    p2 @skip(if: $ignore)
  }
}

"variables": { "uid": 1, "ignore": "this_is_not_boolean" }

Response

    "data": {
        "services": [
            {
                "p1": 123,
                "uid": 1
            }
        ]
    },

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions