fix(graphql): stub metadata on fake files interfaces
This commit is contained in:
parent
7c4ae3b786
commit
bd07441b7e
2 changed files with 9 additions and 3 deletions
|
@ -240,7 +240,7 @@ class API::V2::StoredQuery
|
|||
...FileFragment
|
||||
}
|
||||
pdf {
|
||||
url
|
||||
...FileFragment
|
||||
}
|
||||
usager {
|
||||
email
|
||||
|
|
|
@ -143,7 +143,10 @@ module Types
|
|||
{
|
||||
filename: "dossier-#{object.id}.pdf",
|
||||
content_type: 'application/pdf',
|
||||
url: Rails.application.routes.url_helpers.api_v2_dossier_pdf_url(id: sgid)
|
||||
url: Rails.application.routes.url_helpers.api_v2_dossier_pdf_url(id: sgid),
|
||||
byte_size: 0,
|
||||
byte_size_big_int: '0',
|
||||
checksum: ''
|
||||
}
|
||||
end
|
||||
|
||||
|
@ -152,7 +155,10 @@ module Types
|
|||
{
|
||||
filename: "dossier-#{object.id}-features.json",
|
||||
content_type: 'application/json',
|
||||
url: Rails.application.routes.url_helpers.api_v2_dossier_geojson_url(id: sgid)
|
||||
url: Rails.application.routes.url_helpers.api_v2_dossier_geojson_url(id: sgid),
|
||||
byte_size: 0,
|
||||
byte_size_big_int: '0',
|
||||
checksum: ''
|
||||
}
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue