Replace presigned URL string fields (logoUrl, fileUrl, ndaFileName, etc.) with nested File references resolved through /api/files/v1/. Update console Relay queries and e2e coverage accordingly. Route NDA upload through filemanager.PutFile and return stable IAM org logo URLs for consistency with the files API. Signed-off-by: Ludovic Vielle <ludovic@probo.com>
10 lines
163 B
GraphQL
10 lines
163 B
GraphQL
type File {
|
|
id: ID!
|
|
mimeType: String!
|
|
fileName: String!
|
|
size: BigInt!
|
|
downloadUrl: String!
|
|
createdAt: Datetime!
|
|
updatedAt: Datetime!
|
|
}
|