Fix prettier
This commit is contained in:
parent
4b41d3b039
commit
19f324a1cf
769
src/index.tsx
769
src/index.tsx
File diff suppressed because it is too large
Load Diff
@ -49,7 +49,9 @@ type UserGQL {
|
|||||||
statistics: UserStatisticsGQL!
|
statistics: UserStatisticsGQL!
|
||||||
}
|
}
|
||||||
|
|
||||||
"""Date with time (isoformat)"""
|
"""
|
||||||
|
Date with time (isoformat)
|
||||||
|
"""
|
||||||
scalar DateTime
|
scalar DateTime
|
||||||
|
|
||||||
type UserStatisticsGQL {
|
type UserStatisticsGQL {
|
||||||
@ -61,7 +63,9 @@ type UserStatisticsGQL {
|
|||||||
medianRun: Decimal
|
medianRun: Decimal
|
||||||
}
|
}
|
||||||
|
|
||||||
"""Decimal (fixed-point)"""
|
"""
|
||||||
|
Decimal (fixed-point)
|
||||||
|
"""
|
||||||
scalar Decimal
|
scalar Decimal
|
||||||
|
|
||||||
type VideoGQL {
|
type VideoGQL {
|
||||||
@ -237,9 +241,17 @@ type PageInfoGQL {
|
|||||||
|
|
||||||
type Mutation {
|
type Mutation {
|
||||||
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
||||||
createUploadStream(uploadMetadata: UploadMetadataInput, videoName: String = null): CreateUploadStreamReturn!
|
createUploadStream(
|
||||||
|
uploadMetadata: UploadMetadataInput
|
||||||
|
videoName: String = null
|
||||||
|
): CreateUploadStreamReturn!
|
||||||
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
||||||
terminateUploadStream(videoId: Int!, videoName: String = null, gameType: String = null, tableSize: String = null): Boolean!
|
terminateUploadStream(
|
||||||
|
videoId: Int!
|
||||||
|
videoName: String = null
|
||||||
|
gameType: String = null
|
||||||
|
tableSize: String = null
|
||||||
|
): Boolean!
|
||||||
}
|
}
|
||||||
|
|
||||||
input CreateBucketSetInput {
|
input CreateBucketSetInput {
|
||||||
|
Loading…
Reference in New Issue
Block a user