Replies: 1 comment 7 replies
-
We are currently rewriting OpenAPI handler and releasing it under |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have a REST API and in the json, the parameter type is integer
"parameters": [ { "name": "id", "in": "path", "description": "ID of the company.", "required": true, "schema": { "type": "integer", "description": "ID of the company.", "format": "int64" } } ],
however, the 'id' parameter shows as float in the graphql schema in the doc in the playground(company(id: Float!): Company). is t his caused by there is no type in Graphql to handle int64? Thanks
Beta Was this translation helpful? Give feedback.
All reactions