@@ -75,6 +75,12 @@ export type File = {
75
75
urls : ResourceLocations ;
76
76
} ;
77
77
78
+ export type FileEntityPageEdge = {
79
+ __typename ?: 'FileEntityPageEdge' ;
80
+ cursor : Scalars [ 'String' ] [ 'output' ] ;
81
+ node : File ;
82
+ } ;
83
+
78
84
export type FileMetadata = {
79
85
__typename ?: 'FileMetadata' ;
80
86
height ?: Maybe < Scalars [ 'Float' ] [ 'output' ] > ;
@@ -83,17 +89,11 @@ export type FileMetadata = {
83
89
84
90
export type FilePage = {
85
91
__typename ?: 'FilePage' ;
86
- edges : Array < FilePageEdge > ;
92
+ edges : Array < FileEntityPageEdge > ;
87
93
pageInfo : PageInfo ;
88
94
totalCount : Scalars [ 'Int' ] [ 'output' ] ;
89
95
} ;
90
96
91
- export type FilePageEdge = {
92
- __typename ?: 'FilePageEdge' ;
93
- cursor : Scalars [ 'String' ] [ 'output' ] ;
94
- node : File ;
95
- } ;
96
-
97
97
export type Invite = {
98
98
__typename ?: 'Invite' ;
99
99
consumed : Scalars [ 'Boolean' ] [ 'output' ] ;
@@ -214,19 +214,19 @@ export type Paste = {
214
214
urls : ResourceLocations ;
215
215
} ;
216
216
217
+ export type PasteEntityPageEdge = {
218
+ __typename ?: 'PasteEntityPageEdge' ;
219
+ cursor : Scalars [ 'String' ] [ 'output' ] ;
220
+ node : Paste ;
221
+ } ;
222
+
217
223
export type PastePage = {
218
224
__typename ?: 'PastePage' ;
219
- edges : Array < PastePageEdge > ;
225
+ edges : Array < PasteEntityPageEdge > ;
220
226
pageInfo : PageInfo ;
221
227
totalCount : Scalars [ 'Int' ] [ 'output' ] ;
222
228
} ;
223
229
224
- export type PastePageEdge = {
225
- __typename ?: 'PastePageEdge' ;
226
- cursor : Scalars [ 'String' ] [ 'output' ] ;
227
- node : Paste ;
228
- } ;
229
-
230
230
export type Query = {
231
231
__typename ?: 'Query' ;
232
232
config : Config ;
@@ -323,14 +323,14 @@ export type GetFilesQueryVariables = Exact<{
323
323
} > ;
324
324
325
325
326
- export type GetFilesQuery = { __typename ?: 'Query' , user : { __typename ?: 'User' , files : { __typename ?: 'FilePage' , pageInfo : { __typename ?: 'PageInfo' , endCursor ?: string | null , hasNextPage : boolean } , edges : Array < { __typename ?: 'FilePageEdge ' , node : { __typename ?: 'File' , id : string , type : string , displayName : string , sizeFormatted : string , thumbnail ?: { __typename ?: 'Thumbnail' , width : number , height : number } | null , paths : { __typename ?: 'ResourceLocations' , thumbnail ?: string | null } , urls : { __typename ?: 'ResourceLocations' , view : string } } } > } } } ;
326
+ export type GetFilesQuery = { __typename ?: 'Query' , user : { __typename ?: 'User' , files : { __typename ?: 'FilePage' , pageInfo : { __typename ?: 'PageInfo' , endCursor ?: string | null , hasNextPage : boolean } , edges : Array < { __typename ?: 'FileEntityPageEdge ' , node : { __typename ?: 'File' , id : string , type : string , displayName : string , sizeFormatted : string , thumbnail ?: { __typename ?: 'Thumbnail' , width : number , height : number } | null , paths : { __typename ?: 'ResourceLocations' , thumbnail ?: string | null } , urls : { __typename ?: 'ResourceLocations' , view : string } } } > } } } ;
327
327
328
328
export type GetPastesQueryVariables = Exact < {
329
329
after ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
330
330
} > ;
331
331
332
332
333
- export type GetPastesQuery = { __typename ?: 'Query' , user : { __typename ?: 'User' , pastes : { __typename ?: 'PastePage' , pageInfo : { __typename ?: 'PageInfo' , endCursor ?: string | null , hasNextPage : boolean } , edges : Array < { __typename ?: 'PastePageEdge ' , node : { __typename ?: 'Paste' , id : string , title ?: string | null , encrypted : boolean , burn : boolean , type : string , createdAt : any , expiresAt ?: any | null , urls : { __typename ?: 'ResourceLocations' , view : string } } } > } } } ;
333
+ export type GetPastesQuery = { __typename ?: 'Query' , user : { __typename ?: 'User' , pastes : { __typename ?: 'PastePage' , pageInfo : { __typename ?: 'PageInfo' , endCursor ?: string | null , hasNextPage : boolean } , edges : Array < { __typename ?: 'PasteEntityPageEdge ' , node : { __typename ?: 'Paste' , id : string , title ?: string | null , encrypted : boolean , burn : boolean , type : string , createdAt : any , expiresAt ?: any | null , urls : { __typename ?: 'ResourceLocations' , view : string } } } > } } } ;
334
334
335
335
export type LoginMutationVariables = Exact < {
336
336
username : Scalars [ 'String' ] [ 'input' ] ;
0 commit comments