Skip to content

Commit

Permalink
remove unnecessary GraphQL field from Token entity
Browse files Browse the repository at this point in the history
  • Loading branch information
cfaur09 committed Nov 5, 2024
1 parent af6b63a commit d5c6d6e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/endpoints/tokens/entities/token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ export class Token {
@ApiProperty({ type: Number, nullable: true, required: false })
tradesCount: number | undefined = undefined;

@Field(() => TokenOwnersHistory, { description: 'Token owners history.', nullable: true })
@ApiProperty({ type: TokenOwnersHistory, nullable: true })
ownersHistory: TokenOwnersHistory[] = [];
}

0 comments on commit d5c6d6e

Please sign in to comment.