123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- scalar Violation
- interface NodeInterface {
- id: Int!
- path: String!
- }
- type Concernement implements NodeInterface {
- id: Int!
- path: String!
- uuid: String!
- bundle: String!
- title: String!
- author: String
- description: String
- caillou: String
- recit: Filefield
- entites: [Entiteintegre]
- besoins: [Besoin]
- doleances: [Doleance]
- }
- type Entiteintegre {
- entite: Entite
- actuelfuture: Int
- menacemaintien: Float
- prise: Float
- }
- type Entite implements NodeInterface {
- id: Int!
- path: String!
- uuid: String!
- bundle: String!
- title: String!
- author: String
- action: String
- menacemaintien: String
- superposition: [Entite]
- proximite: [Entite]
- agissante: Boolean
- sources: [Source]
- }
- type Source {
- audios: Filefield
- date: Date
- documents: [Filefield]
- description: String
- images: [Image]
- liens: [Link]
- videos: [VideoLink]
- }
- type Besoin implements NodeInterface {
- id: Int!
- path: String!
- author: String
- description: String!
- index: Int
- concernement: Concernement
- reponses: [Reponse]
- }
- type Reponse implements NodeInterface {
- id: Int!
- path: String!
- author: String
- besoin: Besoin
- qui: String
- quoi: String
- ou: String
- avec: String
- }
- type Doleance implements NodeInterface {
- id: Int!
- path: String!
- uuid: String!
- bundle: String!
- title: String!
- author: String
- #1
- leprobleme: String
- lenquete: String
- groupesinterets: [GroupeInterets]
- #2
- entite_addresse_doleance: String
- comment_ennonce_doleance: String
- aqui_addresse_doleance: String
- reception_traitement: [ReceptionTraitement]
- #3
- entites_decisionnaires: String
- decision_formule: String
- mise_en_oeuvre_decision: [MiseEnoeuvreDecision]
- #4
- entite_adresse_application: String
- aqui_adresse_decision: String
- comment_formule_decision: String
- receptions_et_applications: [ReceptionsApplications]
- probleme_initial_resolu: Int
- oui_nouvelle_situation: String
- non_adresse_doleance: String
- }
- type GroupeInterets {
- groupe_interets: String
- accorder_interets: String
- formuler: String
- }
- type ReceptionTraitement {
- entite_adressee: String
- doleance_formulee: String
- traite_doleance: String
- entite_recoit_doleance: String
- }
- type MiseEnoeuvreDecision {
- entite_adresse_decision: String
- formule_decision: String
- entite_metenoeuvre_decisio: String
- }
- type ReceptionsApplications {
- applique_decision: String
- formule_decision_applic: String
- entite_recoit_decision: String
- }
- type Static implements NodeInterface {
- id: Int!
- uuid: String!
- bundle: String!
- title: String!
- path: String!
- author: String
- texte: String
- }
- type Group {
- id: Int!
- uuid: String!
- name: String!
- path: String!
- description: String
- owner: User
- members: [User]
- concernements: [Concernement]
- }
- # type GroupMember {
- # id: Int!
- # user: User
- # }
- type User {
- id: Int!
- email: String
- username: String
- roles: [String]
- concernements: [Concernement]
- groups: [Group]
- }
- # type Role {
- # name: 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
- }
- type EntityDefinition {
- fields: [FieldDef]
- }
- type FieldDef {
- field_name: String
- type: String
- label: String
- description: String
- }
|