hello:
I want to associate files uploaded to CDF type pdf for example to my model, following this scheme:
type Documentation {
name: String
# This is a CDF built in type
file: File
# this is the INVERSE relationship of the Pump.documentation
# Pump.documentation <-> Documentation.relatedPumps
relatedPumps: [Pump] @relation(
direction: INWARDS,
type: { externalId: "Pump.documentation", space: "Space_PabloPalacios" }
)
}
but when I select the uploaded file it only shows me jpg, any ideas?