Registration Error Username & Email should be unique
DevelopingPOST
http://localhost:3000/graphqlMutation
mutation Register($register: RegisterInput!) {
register(register: $register) {
age
email
id
sex
role
username
phone
}
}
Variables
{
"register": {
"username": "dev",
"email": "dev@po.com",
"role": "admin",
"password": "Pass@123",
"phone": "9657970148",
"sex": "male",
"age": 20
}
}
Request
None
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
ExampleDuplicate Key error on register
{
"errors": [
{
"message": "duplicate key value violates unique constraint \"UQ_a000cca60bcf04454e727699490\"",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"register"
],
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"stacktrace": [
"QueryFailedError: duplicate key value violates unique constraint \"UQ_a000cca60bcf04454e727699490\"",
" at PostgresQueryRunner.query (/home/siddharth/drive/Intern_2024_Logic_Legends/src/driver/postgres/PostgresQueryRunner.ts:331:19)",
" at processTicksAndRejections (node:internal/process/task_queues:105:5)",
" at InsertQueryBuilder.execute (/home/siddharth/drive/Intern_2024_Logic_Legends/src/query-builder/InsertQueryBuilder.ts:163:33)",
" at SubjectExecutor.executeInsertOperations (/home/siddharth/drive/Intern_2024_Logic_Legends/src/persistence/SubjectExecutor.ts:435:42)",
" at SubjectExecutor.execute (/home/siddharth/drive/Intern_2024_Logic_Legends/src/persistence/SubjectExecutor.ts:137:9)",
" at EntityPersistExecutor.execute (/home/siddharth/drive/Intern_2024_Logic_Legends/src/persistence/EntityPersistExecutor.ts:182:21)",
" at UsersService.createUser (/home/siddharth/drive/Intern_2024_Logic_Legends/src/modules/users/users.service.ts:41:23)",
" at AuthService.register (/home/siddharth/drive/Intern_2024_Logic_Legends/src/modules/auth/auth.service.ts:23:23)",
" at target (/home/siddharth/drive/Intern_2024_Logic_Legends/node_modules/@nestjs/core/helpers/external-context-creator.js:74:28)",
" at Object.register (/home/siddharth/drive/Intern_2024_Logic_Legends/node_modules/@nestjs/core/helpers/external-proxy.js:9:24)"
]
}
}
],
"data": null
}
Last modified: 2 months ago