Skip to main content
The Print Export module generates print-ready assets from sustainability data — labels, certificates, QR codes, and formatted data sheets for physical packaging and marketing materials.

Generating a print label

mutation {
  generatePrintLabel(input: {
    productId: "prod_abc123"
    format: PDF
    template: SUSTAINABILITY_LABEL
    dimensions: { width: 100, height: 60, unit: MM }
    locale: "nl"
  }) {
    url
    format
    expiresAt
    dimensions {
      width
      height
      unit
    }
  }
}

Available templates

TemplateDescriptionTypical use
SUSTAINABILITY_LABELCompact eco-label with score and iconProduct packaging
CARBON_CERTIFICATEDetailed impact certificateDocumentation, proof
QR_DPPQR code linking to Digital Product PassportPackaging, tags
COMPARISON_CARDSide-by-side product comparisonMarketing collateral
SUPPLY_CHAIN_SUMMARYSummarized supply chain visualizationBrochures
IMPACT_BADGEVisual impact badgeStickers, tags

Export formats

FormatDescription
PDFPrint-ready PDF with CMYK color profile
SVGScalable vector for integration into design tools
PNGRaster image at specified DPI
EPSEncapsulated PostScript for professional printing

Batch export

Generate labels for multiple products at once:
mutation {
  batchGeneratePrintLabels(input: {
    productIds: ["prod_abc123", "prod_def456", "prod_ghi789"]
    format: PDF
    template: SUSTAINABILITY_LABEL
    dimensions: { width: 100, height: 60, unit: MM }
    dpi: 300
  }) {
    labels {
      productId
      url
    }
    archiveUrl
  }
}

Custom data fields

Include specific data points on labels:
mutation {
  generatePrintLabel(input: {
    productId: "prod_abc123"
    format: SVG
    template: SUSTAINABILITY_LABEL
    fields: [CO2_EQUIVALENT, MKI_SCORE, RECYCLED_CONTENT, CERTIFICATION]
    showQrCode: true
    qrCodeTarget: DPP
  }) {
    url
    format
  }
}

Use cases

  • Packaging: Eco-labels on physical product packaging
  • Marketing: Impact certificates for brochures and presentations
  • Retail: Shelf labels with sustainability scores
  • Compliance: QR codes linking to Digital Product Passports