Remove base64 scalar
This commit is contained in:
parent
056120a68a
commit
655e59c43c
@ -28,8 +28,6 @@ export type Scalars = {
|
||||
Boolean: { input: boolean; output: boolean };
|
||||
Int: { input: number; output: number };
|
||||
Float: { input: number; output: number };
|
||||
/** Represents binary data as Base64-encoded strings, using the standard alphabet. */
|
||||
Base64: { input: any; output: any };
|
||||
/** Date (isoformat) */
|
||||
Date: { input: any; output: any };
|
||||
/** Date with time (isoformat) */
|
||||
@ -2054,7 +2052,7 @@ export type MutationEditUserArgs = {
|
||||
};
|
||||
|
||||
export type MutationFindPrerecordTableLayoutArgs = {
|
||||
b64Image: Scalars["Base64"]["input"];
|
||||
b64Image: Scalars["String"]["input"];
|
||||
videoId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
|
@ -670,7 +670,7 @@ type Mutation {
|
||||
editUser(input: EditUserInputGQL!): UserGQL!
|
||||
followUser(followedUserId: Int!): UserGQL!
|
||||
unfollowUser(followedUserId: Int!): UserGQL!
|
||||
findPrerecordTableLayout(b64Image: Base64!, videoId: Int!): HomographyInfoGQL
|
||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||
createUploadStream(
|
||||
videoMetadata: VideoMetadataInput!
|
||||
): CreateUploadStreamReturn!
|
||||
@ -761,14 +761,6 @@ input EditUserInputGQL {
|
||||
fargoRating: Int = null
|
||||
}
|
||||
|
||||
"""
|
||||
Represents binary data as Base64-encoded strings, using the standard alphabet.
|
||||
"""
|
||||
scalar Base64
|
||||
@specifiedBy(
|
||||
url: "https://datatracker.ietf.org/doc/html/rfc4648.html#section-4"
|
||||
)
|
||||
|
||||
type CreateUploadStreamReturn {
|
||||
videoId: Int!
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user