AssetBundle

open_in_new

A bundle or group of assets associated with the model. This interface will only be applied to objects which also implement Asset. If a url is specified it will be to a compressed file containing all the associated assets. If urlTemplate is specified there will be additional details on the implementing class describing how to interpolate the template to get the associated urls.

GraphQL Schema definition

  • interface AssetBundle {
  • # If specified this represents a template that may have replacement variables
  • # interpolated to get the real url.
  • # If `validUntil` is specified that applies to any generated url.
  • urlTemplate: String
  • # A url for each child of this bundler.
  • # Implementing classes which have large numbers of child objects may leave
  • # this field blank.
  • # If `validUntil` is specified all child links are only valid until the time
  • # specified.
  • children: [String]
  • }