Kinjal Raykarmakar

Results 7 comments of Kinjal Raykarmakar

Just dropped a project working towards this! https://github.com/Kinjalrk2k/postman-to-openapi-json-extended What I've done is: - Used this library to _parse_ the Postman collection and extract the paths in which schemas might be...

This is a very helpful feature. Please consider merging this PR

+1 for this feature!

The `created_at` is working for me, but not the `updated_at` After adding a few logs in the hook, I see that the value of `updated_at` is getting set correctly, however...

Instead of `.save()` I used `.insert()` and it seems to work that way! Example: ```py new_user = User(...) # Like invoking the constructor of the model class new_user.insert() new_user.fetch_all_links() #...

I was looking into the `requestBody` and found that the data returned is: ```json { "requestBody": { "content": { "application/json": { "schema": { "type": "object", "example": { "id": "100", "createdAt":...