# # OpenAPI Petstore # # # This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters. # # Version: 1.0.0 # # Generated by OpenAPI Generator: https://openapi-generator.tech # A User who is purchasing from the pet store type User { id: Int! username: String! firstName: String! lastName: String! email: String! password: String! phone: String! # User Status userStatus: Int! } input UserInput { id: Int! username: String! firstName: String! lastName: String! email: String! password: String! phone: String! # User Status userStatus: Int! }