Skip to content

Commit

Permalink
Update metaphysics schema (#6679)
Browse files Browse the repository at this point in the history
  • Loading branch information
artsyit authored Apr 28, 2022
1 parent 9c39e41 commit 5c7ec25
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -8569,6 +8569,17 @@ type Image {
width: Int
}

type ImageSearch {
# File stream transfer encoding
encoding: String!

# File name
filename: String!

# File MIME type. Provided by the client and can’t be trusted
mimetype: String!
}

type ImageURLs {
normalized: String
}
Expand Down Expand Up @@ -11655,6 +11666,12 @@ type Query {
): CreditCard
departments: [Department!]!

# Get an image info
doNotUseImageSearch(
# Image file
image: Upload!
): ImageSearch

# A namespace external partners (provided by Galaxy)
external: External!

Expand Down Expand Up @@ -14294,6 +14311,9 @@ type UpdateViewingRoomSubsectionsPayload {
subsections: [ViewingRoomSubsection!]!
}

# The `Upload` scalar type represents a file upload.
scalar Upload

type User {
analytics: AnalyticsUserStats
cached: Int
Expand Down Expand Up @@ -14786,6 +14806,12 @@ type Viewer {
): CreditCard
departments: [Department!]!

# Get an image info
doNotUseImageSearch(
# Image file
image: Upload!
): ImageSearch

# A namespace external partners (provided by Galaxy)
external: External!

Expand Down

0 comments on commit 5c7ec25

Please sign in to comment.