Open LazyGeniusMan opened 1 year ago
I can reproduce the same issue on my system with API-Platform 3.3
I've used this command:
pnpm create @api-platform/client http://sw-partly.ddev.site/api/docs.jsonopenapi . -f openapi3 --generator nuxt
The output of the command was:
Code for the "VehicleManufacturer" resource type has been generated!
Code for the "VehiclePartCondition" resource type has been generated!
Code for the "VehiclePart" resource type has been generated!
Code for the "Vehicle" resource type has been generated!
It recognizes all available API-Platform Endpoints, but when I try to access the generated page, i get this error:
Cannot read properties of null (reading 'hydra:member')
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async setup (./components/vehiclemanufacturer/VehicleManufacturerList.js:49:18)
API Platform version(s) affected: x.y.z
Description
Nuxt Generator with
-f openapi3
options is not working with500
error code. The error message is:How to reproduce
Follow step on https://api-platform.com/docs/create-client/nuxt/ but using
-f openapi3
option and adddocs.json
to url.Possible Solution
Additional Context
I also tried different OpenAPI 3 specs from Swagger's Pet Store 3, it still gave me the same error. I also tried Quasar generator with OpenAPI 3 specs and it's working fine.
A bit out of topic of this bug, I have some questions: