Skip to content

Commit

Permalink
Merge pull request #6 from Enigmatis/fix-snapshot
Browse files Browse the repository at this point in the history
Fix snapshot
  • Loading branch information
chenshoo authored May 21, 2020
2 parents 9e54db3 + 65ee6b9 commit 419902c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/schema/repository-entity.model.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Field, ID, InterfaceType } from "@nestjs/graphql";
import { Field, InterfaceType } from "@nestjs/graphql";

@InterfaceType()
export abstract class RepositoryEntity {
@Field(() => ID)
id: any;
@Field(() => String)
id: string;

@Field({ nullable: true })
createdBy: string;
Expand Down

0 comments on commit 419902c

Please sign in to comment.