Describe the bug
Within \Laragraph\Utils\RequestParser::bodyParams it instantiates $bodyParams using $request->input(). This includes GET parameters in the URL, not just the body parameters
Expected behavior/Solution
\Laragraph\Utils\RequestParser::bodyParams should only include bodyParams by using $request->post() instead.
Describe the bug
Within
\Laragraph\Utils\RequestParser::bodyParamsit instantiates$bodyParamsusing$request->input(). This includes GET parameters in the URL, not just the body parametersExpected behavior/Solution
\Laragraph\Utils\RequestParser::bodyParamsshould only include bodyParams by using$request->post()instead.