Тип

UniquizeFilePayload

The output of our `uniquizeFile` mutation.

"""The output of our `uniquizeFile` mutation."""
type UniquizeFilePayload {
  """
  The exact same `clientMutationId` that was provided in the mutation input,
  unchanged and unused. May be used by a client to track mutations.
  """
  clientMutationId: String
  result: [File]
  """
  Our root query field type. Allows us to run any query from our mutation payload.
  """
  query: Query
}