Skip to content

Commit

Permalink
enhance(pickk-common): ✨ update api to pickk-server v0.1.90
Browse files Browse the repository at this point in the history
  • Loading branch information
greatSumini committed Sep 14, 2021
1 parent 7ca1bff commit 7adc8c9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/pickk-common/lib/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,9 @@ export enum CommentOwnerType {

/** 컨텐츠 타입입니다. */
export enum ContentType {
Look = 'Look',
Pickk = 'Pickk',
Digest = 'digest',
Look = 'look',
Video = 'video',
}

export type Coupon = {
Expand Down Expand Up @@ -621,6 +622,7 @@ export type Digest = {
itemPropertyValues: Array<ItemPropertyValue>;
likeCount: Scalars['Int'];
look?: Maybe<Look>;
lookId?: Maybe<Scalars['Int']>;
rating?: Maybe<Scalars['Rating']>;
score: Scalars['Float'];
size: Scalars['String'];
Expand All @@ -632,13 +634,15 @@ export type Digest = {
user?: Maybe<User>;
userId?: Maybe<Scalars['Int']>;
video?: Maybe<Video>;
videoId?: Maybe<Scalars['Int']>;
};

export type DigestFilter = {
idIn?: Maybe<Array<Scalars['Int']>>;
item?: Maybe<DigestItemFilter>;
itemId?: Maybe<Scalars['Int']>;
orderBy?: Maybe<Scalars['String']>;
ratingIsNull?: Maybe<Scalars['Boolean']>;
user?: Maybe<DigestUserFilter>;
userId?: Maybe<Scalars['Int']>;
userIdIn?: Maybe<Array<Scalars['Int']>>;
Expand Down

0 comments on commit 7adc8c9

Please sign in to comment.