Remove base64 scalar

This commit is contained in:
2024-11-07 17:42:58 -07:00
parent 056120a68a
commit 655e59c43c
2 changed files with 2 additions and 12 deletions

View File

@@ -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!
}