scalar Violation interface NodeInterface { id: Int! path: String! } type Concernement implements NodeInterface { id: Int! uuid: String! bundle: String! title: String! path: String! author: String texte: String entites: [Entiteintegre] } type Entiteintegre { entite: Entite rayon: Float angle: Float } type Entite implements NodeInterface { id: Int! uuid: String! bundle: String! title: String! path: String! author: String texte: String images: [Image] fichiers: [File] liens: [Link] } type Static implements NodeInterface { id: Int! uuid: String! bundle: String! title: String! path: String! author: String texte: String } type Filefield { file: File! description: String } type File { fid: String! uuid: String! filename: String! filemime: String! filesize: String! url: String! } type Taxoterm { id: Int! uuid: String! name: String! vocabulary: String } type VideoLink { url: String } type Image { id: Int! url: String! alt: String # style_minicard: ImageStyle # style_minicard_url: String # style_linkedmaterialcard: ImageStyle # style_linkedmaterialcard_url: String # style_cardmedium: ImageStyle # style_cardmedium_url: String # style_cardfull: ImageStyle # style_cardfull_url: String # style_articlecardmedium: ImageStyle # style_articlecardmedium_url: String # style_hd: ImageStyle # style_hd_url: String } type ImageStyle { width: Int height: Int url: String } type Link { url: String title: String } type Date { start: String end: String }