Тип

DeleteFilePayload

The output of our delete `File` mutation.

"""The output of our delete `File` mutation."""
type DeleteFilePayload {
  """
  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
  """The `File` that was deleted by this mutation."""
  file: File
  deletedFileId: ID
  """
  Our root query field type. Allows us to run any query from our mutation payload.
  """
  query: Query
  """An edge for our `File`. May be used by Relay 1."""
  fileEdge(
    """The method to use when ordering `File`."""
    orderBy: [FileOrderBy!]! = [PRIMARY_KEY_ASC]
  ): FileEdge
}