Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Sep 21, 2023
1 parent 712c1f6 commit def7228
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ input IssueCollectionArgs {

type KeyValueType {
key: String!
value: String
value: String!
}

type Marketplace {
Expand Down
1 change: 0 additions & 1 deletion src/modules/analytics/models/analytics-aggregate-value.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Field, Float, Int, ObjectType } from '@nestjs/graphql';
import * as moment from 'moment';
import { KeyValueType } from 'src/modules/assets/models';

@ObjectType()
export class AnalyticsAggregateValue {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/assets/models/Metadata.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class AttributeType {
export class KeyValueType {
@Field()
key: String;
@Field({ nullable: true })
@Field()
value: String;
constructor(init?: Partial<KeyValueType>) {
Object.assign(this, init);
Expand Down

0 comments on commit def7228

Please sign in to comment.