2023-07-21 16:20:31 +02:00
|
|
|
|
"""
|
|
|
|
|
Requires that exactly one field must be supplied and that field must not be `null`.
|
|
|
|
|
"""
|
|
|
|
|
directive @oneOf on INPUT_OBJECT
|
|
|
|
|
|
2021-02-17 14:04:33 +01:00
|
|
|
|
type Address {
|
|
|
|
|
"""
|
|
|
|
|
code INSEE de la commune
|
|
|
|
|
"""
|
|
|
|
|
cityCode: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
nom de la commune
|
|
|
|
|
"""
|
|
|
|
|
cityName: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
n° de département
|
|
|
|
|
"""
|
|
|
|
|
departmentCode: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
nom de département
|
|
|
|
|
"""
|
|
|
|
|
departmentName: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
coordonnées géographique
|
|
|
|
|
"""
|
|
|
|
|
geometry: GeoJSON
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
libellé complet de l’adresse
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
code postal
|
|
|
|
|
"""
|
|
|
|
|
postalCode: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
n° de region
|
|
|
|
|
"""
|
|
|
|
|
regionCode: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
nom de région
|
|
|
|
|
"""
|
|
|
|
|
regionName: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
numéro éventuel et nom de voie ou lieu dit
|
|
|
|
|
"""
|
2021-03-04 12:52:01 +01:00
|
|
|
|
streetAddress: String
|
2021-02-17 14:04:33 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
nom de voie ou lieu dit
|
|
|
|
|
"""
|
|
|
|
|
streetName: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
numéro avec indice de répétition éventuel (bis, ter, A, B)
|
|
|
|
|
"""
|
|
|
|
|
streetNumber: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
type de résultat trouvé
|
|
|
|
|
"""
|
|
|
|
|
type: AddressType!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AddressChamp implements Champ {
|
|
|
|
|
address: Address
|
2024-03-21 10:21:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2023-04-05 18:02:42 +02:00
|
|
|
|
commune: Commune
|
|
|
|
|
departement: Departement
|
2021-02-17 14:04:33 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2021-02-17 14:04:33 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2021-02-17 14:04:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type AddressChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-17 14:04:33 +01:00
|
|
|
|
enum AddressType {
|
|
|
|
|
"""
|
|
|
|
|
numéro « à la plaque »
|
|
|
|
|
"""
|
|
|
|
|
housenumber
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
lieu-dit
|
|
|
|
|
"""
|
|
|
|
|
locality
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
numéro « à la commune »
|
|
|
|
|
"""
|
|
|
|
|
municipality
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
position « à la voie », placé approximativement au centre de celle-ci
|
|
|
|
|
"""
|
|
|
|
|
street
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type AnnuaireEducationChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 18:52:07 +01:00
|
|
|
|
type Association {
|
2021-03-04 16:18:12 +01:00
|
|
|
|
dateCreation: ISO8601Date
|
2021-03-05 10:13:22 +01:00
|
|
|
|
dateDeclaration: ISO8601Date
|
|
|
|
|
datePublication: ISO8601Date
|
|
|
|
|
objet: String
|
2019-11-21 18:52:07 +01:00
|
|
|
|
rna: String!
|
|
|
|
|
titre: String!
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-23 18:54:51 +01:00
|
|
|
|
type Avis {
|
2022-12-06 13:34:39 +01:00
|
|
|
|
attachment: File @deprecated(reason: "Utilisez le champ `attachments` à la place.")
|
|
|
|
|
attachments: [File!]!
|
2021-03-22 10:25:47 +01:00
|
|
|
|
claimant: Profile
|
2019-09-26 15:17:58 +02:00
|
|
|
|
dateQuestion: ISO8601DateTime!
|
|
|
|
|
dateReponse: ISO8601DateTime
|
|
|
|
|
expert: Profile
|
2019-09-18 18:45:53 +02:00
|
|
|
|
id: ID!
|
2022-06-15 12:25:44 +02:00
|
|
|
|
instructeur: Profile! @deprecated(reason: "Utilisez le champ `claimant` à la place.")
|
2018-11-23 18:54:51 +01:00
|
|
|
|
question: String!
|
2023-03-06 12:44:46 +01:00
|
|
|
|
questionAnswer: Boolean
|
|
|
|
|
questionLabel: String
|
2019-09-26 15:17:58 +02:00
|
|
|
|
reponse: String
|
2018-11-23 18:54:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-28 16:26:02 +01:00
|
|
|
|
"""
|
|
|
|
|
Represents non-fractional signed whole numeric values. Since the value may
|
|
|
|
|
exceed the size of a 32-bit integer, it's encoded as a string.
|
|
|
|
|
"""
|
|
|
|
|
scalar BigInt
|
|
|
|
|
|
2023-05-30 14:42:36 +02:00
|
|
|
|
type COJOChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
type CarteChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
geoAreas: [GeoArea!]!
|
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type CarteChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
interface Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
interface ChampDescriptor {
|
2020-07-16 12:50:00 +02:00
|
|
|
|
"""
|
2020-10-01 16:14:30 +02:00
|
|
|
|
Description des champs d’un bloc répétable.
|
2020-07-16 12:50:00 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
2019-11-07 13:34:19 +01:00
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
2018-11-23 18:55:54 +01:00
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2018-11-23 18:55:54 +01:00
|
|
|
|
label: String!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
2018-11-23 18:55:54 +01:00
|
|
|
|
required: Boolean!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
2018-11-23 18:55:54 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
type CheckboxChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
value: Boolean!
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type CheckboxChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-07 15:00:09 +01:00
|
|
|
|
type ChorusConfiguration {
|
|
|
|
|
"""
|
|
|
|
|
Le code du centre de cout auquel est rattaché la démarche.
|
|
|
|
|
"""
|
|
|
|
|
centreDeCout: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le code du domaine fonctionnel auquel est rattaché la démarche.
|
|
|
|
|
"""
|
|
|
|
|
domaineFonctionnel: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le code du référentiel de programmation auquel est rattaché la démarche..
|
|
|
|
|
"""
|
|
|
|
|
referentielDeProgrammation: String
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 18:52:07 +01:00
|
|
|
|
enum Civilite {
|
|
|
|
|
"""
|
|
|
|
|
Monsieur
|
|
|
|
|
"""
|
|
|
|
|
M
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Madame
|
|
|
|
|
"""
|
|
|
|
|
Mme
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CiviliteChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-11-21 18:52:07 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2019-11-21 18:52:07 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2019-11-21 18:52:07 +01:00
|
|
|
|
value: Civilite
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type CiviliteChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CnafChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-30 19:44:07 +01:00
|
|
|
|
type Commune {
|
|
|
|
|
"""
|
|
|
|
|
Le code INSEE
|
|
|
|
|
"""
|
|
|
|
|
code: String!
|
2023-03-21 14:45:48 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le nom de la commune
|
|
|
|
|
"""
|
2021-11-30 19:44:07 +01:00
|
|
|
|
name: String!
|
2023-03-21 14:45:48 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le code postal
|
|
|
|
|
"""
|
|
|
|
|
postalCode: String
|
2021-11-30 19:44:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CommuneChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2021-11-30 19:44:07 +01:00
|
|
|
|
commune: Commune
|
|
|
|
|
departement: Departement
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2021-11-30 19:44:07 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2021-11-30 19:44:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type CommuneChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-23 17:39:48 +02:00
|
|
|
|
enum ConnectionUsager {
|
|
|
|
|
"""
|
|
|
|
|
Compte supprimé
|
|
|
|
|
"""
|
|
|
|
|
deleted
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Connexion via FranceConnect
|
|
|
|
|
"""
|
|
|
|
|
france_connect
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Connexion via mot de passe
|
|
|
|
|
"""
|
|
|
|
|
password
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
"""
|
|
|
|
|
GeoJSON coordinates
|
|
|
|
|
"""
|
|
|
|
|
scalar Coordinates
|
|
|
|
|
|
2023-07-12 12:03:37 +02:00
|
|
|
|
type Correction {
|
|
|
|
|
dateResolution: ISO8601DateTime
|
|
|
|
|
reason: CorrectionReason!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum CorrectionReason {
|
|
|
|
|
"""
|
|
|
|
|
Le dossier est incomplet et nécessite d’être complété
|
|
|
|
|
"""
|
|
|
|
|
incomplete
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le dossier n’est pas valide et nécessite une correction
|
|
|
|
|
"""
|
|
|
|
|
incorrect
|
2023-11-22 17:10:37 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le dossier doit être mis à jour et revalidé
|
|
|
|
|
"""
|
|
|
|
|
outdated
|
2023-07-12 12:03:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-17 18:11:34 +02:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of CreateDirectUpload
|
|
|
|
|
"""
|
|
|
|
|
input CreateDirectUploadInput {
|
|
|
|
|
"""
|
|
|
|
|
File size (bytes)
|
|
|
|
|
"""
|
|
|
|
|
byteSize: Int!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
MD5 file checksum as base64
|
|
|
|
|
"""
|
|
|
|
|
checksum: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
File content type
|
|
|
|
|
"""
|
|
|
|
|
contentType: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Original file name
|
|
|
|
|
"""
|
|
|
|
|
filename: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of CreateDirectUpload.
|
2019-09-17 18:11:34 +02:00
|
|
|
|
"""
|
|
|
|
|
type CreateDirectUploadPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
directUpload: DirectUpload!
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
type DateChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
|
|
|
|
|
2020-12-18 11:21:03 +01:00
|
|
|
|
"""
|
|
|
|
|
La valeur du champ formaté en ISO8601 (Date).
|
|
|
|
|
"""
|
|
|
|
|
date: ISO8601Date
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2020-12-18 11:21:03 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
|
|
|
|
|
2023-07-12 11:06:42 +02:00
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
|
|
|
|
|
2020-12-18 11:21:03 +01:00
|
|
|
|
"""
|
|
|
|
|
La valeur du champ formaté en ISO8601 (DateTime).
|
|
|
|
|
"""
|
2022-06-15 12:25:44 +02:00
|
|
|
|
value: ISO8601DateTime @deprecated(reason: "Utilisez le champ `date` ou le fragment `DatetimeChamp` à la place.")
|
2020-12-18 11:21:03 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type DateChampDescriptor implements ChampDescriptor {
|
2020-12-18 11:21:03 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Description des champs d’un bloc répétable.
|
2020-12-18 11:21:03 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Description du champ.
|
2019-11-07 13:34:19 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
description: String
|
2019-08-28 11:25:41 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
2021-05-26 13:50:02 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Est-ce que le champ est obligatoire ?
|
2021-05-26 13:50:02 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DatetimeChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
"""
|
|
|
|
|
La valeur du champ formaté en ISO8601 (DateTime).
|
|
|
|
|
"""
|
|
|
|
|
datetime: ISO8601DateTime
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DatetimeChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DecimalNumberChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
value: Float
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DecimalNumberChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Un dossier supprimé
|
|
|
|
|
"""
|
|
|
|
|
type DeletedDossier {
|
|
|
|
|
"""
|
|
|
|
|
Date de suppression.
|
|
|
|
|
"""
|
|
|
|
|
dateSupression: ISO8601DateTime!
|
|
|
|
|
id: ID!
|
2021-05-26 13:50:02 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le numéro du dossier qui a été supprimé.
|
|
|
|
|
"""
|
|
|
|
|
number: Int!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La raison de la suppression du dossier.
|
|
|
|
|
"""
|
|
|
|
|
reason: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’état du dossier supprimé.
|
|
|
|
|
"""
|
|
|
|
|
state: DossierState!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
The connection type for DeletedDossier.
|
|
|
|
|
"""
|
|
|
|
|
type DeletedDossierConnection {
|
|
|
|
|
"""
|
|
|
|
|
A list of edges.
|
|
|
|
|
"""
|
|
|
|
|
edges: [DeletedDossierEdge]
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A list of nodes.
|
|
|
|
|
"""
|
|
|
|
|
nodes: [DeletedDossier]
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Information to aid in pagination.
|
|
|
|
|
"""
|
|
|
|
|
pageInfo: PageInfo!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
An edge in a connection.
|
|
|
|
|
"""
|
|
|
|
|
type DeletedDossierEdge {
|
|
|
|
|
"""
|
|
|
|
|
A cursor for use in pagination.
|
|
|
|
|
"""
|
|
|
|
|
cursor: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
The item at the end of the edge.
|
|
|
|
|
"""
|
|
|
|
|
node: DeletedDossier
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 18:52:07 +01:00
|
|
|
|
interface Demandeur {
|
|
|
|
|
id: ID!
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2021-08-19 11:23:27 +02:00
|
|
|
|
Une démarche
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
type Demarche {
|
2022-06-11 12:41:47 +02:00
|
|
|
|
activeRevision: Revision!
|
2022-06-15 12:25:44 +02:00
|
|
|
|
annotationDescriptors: [ChampDescriptor!]! @deprecated(reason: "Utilisez le champ `activeRevision.annotationDescriptors` à la place.")
|
|
|
|
|
champDescriptors: [ChampDescriptor!]! @deprecated(reason: "Utilisez le champ `activeRevision.champDescriptors` à la place.")
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
2023-12-07 15:00:09 +01:00
|
|
|
|
"""
|
|
|
|
|
Cadre budgétaire Chorus
|
|
|
|
|
"""
|
|
|
|
|
chorusConfiguration: ChorusConfiguration
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-09-26 15:17:58 +02:00
|
|
|
|
Date de la création.
|
|
|
|
|
"""
|
|
|
|
|
dateCreation: ISO8601DateTime!
|
|
|
|
|
|
2019-12-04 15:45:06 +01:00
|
|
|
|
"""
|
|
|
|
|
Date de la dépublication.
|
|
|
|
|
"""
|
|
|
|
|
dateDepublication: ISO8601DateTime
|
|
|
|
|
|
2019-09-26 15:17:58 +02:00
|
|
|
|
"""
|
|
|
|
|
Date de la dernière modification.
|
|
|
|
|
"""
|
|
|
|
|
dateDerniereModification: ISO8601DateTime!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la fermeture.
|
|
|
|
|
"""
|
|
|
|
|
dateFermeture: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la publication.
|
|
|
|
|
"""
|
2021-01-21 19:02:23 +01:00
|
|
|
|
datePublication: ISO8601DateTime
|
2019-09-26 15:17:58 +02:00
|
|
|
|
|
2019-12-04 12:07:21 +01:00
|
|
|
|
"""
|
2021-08-19 11:23:27 +02:00
|
|
|
|
Pour une démarche déclarative, état cible des dossiers à valider automatiquement
|
2019-12-04 12:07:21 +01:00
|
|
|
|
"""
|
|
|
|
|
declarative: DossierDeclarativeState
|
|
|
|
|
|
2021-05-26 13:50:02 +02:00
|
|
|
|
"""
|
|
|
|
|
Liste de tous les dossiers supprimés d’une démarche.
|
|
|
|
|
"""
|
|
|
|
|
deletedDossiers(
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come after the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
after: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come before the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
before: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossiers supprimés depuis la date.
|
|
|
|
|
"""
|
|
|
|
|
deletedSince: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the first _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
first: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the last _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
last: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’ordre des dossiers supprimés.
|
|
|
|
|
"""
|
2023-07-21 16:20:31 +02:00
|
|
|
|
order: Order = ASC @deprecated(reason: "Utilisez l’argument `last` à la place.")
|
2021-05-26 13:50:02 +02:00
|
|
|
|
): DeletedDossierConnection!
|
|
|
|
|
|
2019-09-26 15:17:58 +02:00
|
|
|
|
"""
|
|
|
|
|
Description de la démarche.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
description: String!
|
|
|
|
|
|
|
|
|
|
"""
|
2020-10-01 16:14:30 +02:00
|
|
|
|
Liste de tous les dossiers d’une démarche.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
dossiers(
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come after the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
after: String
|
|
|
|
|
|
2020-07-29 16:43:41 +02:00
|
|
|
|
"""
|
2021-01-21 19:04:35 +01:00
|
|
|
|
Seulement les dossiers archivés.
|
2020-07-29 16:43:41 +02:00
|
|
|
|
"""
|
|
|
|
|
archived: Boolean
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come before the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
before: String
|
|
|
|
|
|
|
|
|
|
"""
|
2019-09-26 14:57:58 +02:00
|
|
|
|
Dossiers déposés depuis la date.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-09-26 14:57:58 +02:00
|
|
|
|
createdSince: ISO8601DateTime
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
|
|
|
|
"""
|
2019-09-26 14:57:58 +02:00
|
|
|
|
Returns the first _n_ elements from the list.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-09-26 14:57:58 +02:00
|
|
|
|
first: Int
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the last _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
last: Int
|
|
|
|
|
|
2021-01-21 19:04:35 +01:00
|
|
|
|
"""
|
2021-03-16 11:56:17 +01:00
|
|
|
|
Seulement les dossiers pour les révisons avant la révision donnée.
|
2021-01-21 19:04:35 +01:00
|
|
|
|
"""
|
|
|
|
|
maxRevision: ID
|
|
|
|
|
|
|
|
|
|
"""
|
2021-03-16 11:56:17 +01:00
|
|
|
|
Seulement les dossiers pour les révisons après la révision donnée.
|
2021-01-21 19:04:35 +01:00
|
|
|
|
"""
|
|
|
|
|
minRevision: ID
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2020-10-01 16:14:30 +02:00
|
|
|
|
L’ordre des dossiers.
|
2019-09-26 14:57:58 +02:00
|
|
|
|
"""
|
2023-07-21 16:20:31 +02:00
|
|
|
|
order: Order = ASC @deprecated(reason: "Utilisez l’argument `last` à la place.")
|
2019-09-26 14:57:58 +02:00
|
|
|
|
|
2021-01-21 19:04:35 +01:00
|
|
|
|
"""
|
|
|
|
|
Seulement les dossiers pour la révision donnée.
|
|
|
|
|
"""
|
|
|
|
|
revision: ID
|
|
|
|
|
|
2019-09-26 14:57:58 +02:00
|
|
|
|
"""
|
|
|
|
|
Dossiers avec statut.
|
|
|
|
|
"""
|
|
|
|
|
state: DossierState
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-09-26 14:57:58 +02:00
|
|
|
|
Dossiers mis à jour depuis la date.
|
|
|
|
|
"""
|
|
|
|
|
updatedSince: ISO8601DateTime
|
2018-11-20 22:21:38 +01:00
|
|
|
|
): DossierConnection!
|
2020-07-16 12:48:35 +02:00
|
|
|
|
draftRevision: Revision!
|
2022-11-23 09:10:39 +01:00
|
|
|
|
groupeInstructeurs(closed: Boolean): [GroupeInstructeur!]!
|
2018-11-20 22:21:38 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
2021-08-19 11:23:27 +02:00
|
|
|
|
Numero de la démarche.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-11-07 13:24:34 +01:00
|
|
|
|
number: Int!
|
2023-03-21 13:29:51 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Liste de tous les dossiers en attente de suppression définitive d’une démarche.
|
|
|
|
|
"""
|
|
|
|
|
pendingDeletedDossiers(
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come after the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
after: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come before the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
before: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossiers en attente de suppression depuis la date.
|
|
|
|
|
"""
|
|
|
|
|
deletedSince: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the first _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
first: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the last _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
last: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’ordre des dossiers en attente de suppression.
|
|
|
|
|
"""
|
2023-07-21 16:20:31 +02:00
|
|
|
|
order: Order = ASC @deprecated(reason: "Utilisez l’argument `last` à la place.")
|
2023-03-21 13:29:51 +01:00
|
|
|
|
): DeletedDossierConnection!
|
2020-07-16 12:48:35 +02:00
|
|
|
|
publishedRevision: Revision
|
|
|
|
|
revisions: [Revision!]!
|
2022-06-14 16:01:38 +02:00
|
|
|
|
service: Service
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
2021-08-19 11:23:27 +02:00
|
|
|
|
État de la démarche.
|
2019-11-07 13:34:19 +01:00
|
|
|
|
"""
|
2018-11-20 22:21:38 +01:00
|
|
|
|
state: DemarcheState!
|
2019-09-26 15:17:58 +02:00
|
|
|
|
|
|
|
|
|
"""
|
2021-08-19 11:23:27 +02:00
|
|
|
|
Titre de la démarche.
|
|
|
|
|
"""
|
|
|
|
|
title: String!
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-25 13:24:17 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DemarcheCloner
|
|
|
|
|
"""
|
|
|
|
|
input DemarcheClonerInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La démarche
|
|
|
|
|
"""
|
|
|
|
|
demarche: FindDemarcheInput!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le titre de la nouvelle démarche.
|
|
|
|
|
"""
|
|
|
|
|
title: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated return type of DemarcheCloner.
|
|
|
|
|
"""
|
|
|
|
|
type DemarcheClonerPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
demarche: DemarcheDescriptor
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-19 11:23:27 +02:00
|
|
|
|
"""
|
|
|
|
|
Une démarche (métadonnées)
|
|
|
|
|
Ceci est une version abrégée du type `Demarche`, qui n’expose que les métadonnées.
|
|
|
|
|
Cela évite l’accès récursif aux dossiers.
|
|
|
|
|
"""
|
|
|
|
|
type DemarcheDescriptor {
|
2023-03-21 16:14:36 +01:00
|
|
|
|
"""
|
|
|
|
|
URL du cadre juridique qui justifie le droit de collecter les données demandées dans la démarche
|
|
|
|
|
"""
|
2023-07-27 12:19:07 +02:00
|
|
|
|
cadreJuridiqueURL: String
|
|
|
|
|
cadreJuridiqueUrl: String @deprecated(reason: "Utilisez le champ `cadreJuridiqueURL` à la place.")
|
2022-06-14 16:01:38 +02:00
|
|
|
|
|
2021-08-19 11:23:27 +02:00
|
|
|
|
"""
|
|
|
|
|
Date de la création.
|
|
|
|
|
"""
|
|
|
|
|
dateCreation: ISO8601DateTime!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la dépublication.
|
|
|
|
|
"""
|
|
|
|
|
dateDepublication: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la dernière modification.
|
|
|
|
|
"""
|
|
|
|
|
dateDerniereModification: ISO8601DateTime!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la fermeture.
|
|
|
|
|
"""
|
|
|
|
|
dateFermeture: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la publication.
|
|
|
|
|
"""
|
|
|
|
|
datePublication: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Pour une démarche déclarative, état cible des dossiers à valider automatiquement
|
|
|
|
|
"""
|
|
|
|
|
declarative: DossierDeclarativeState
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
fichier contenant le cadre juridique
|
|
|
|
|
"""
|
2022-11-24 13:16:37 +01:00
|
|
|
|
deliberation: File
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
URL pour commencer la démarche
|
|
|
|
|
"""
|
2023-07-27 12:19:07 +02:00
|
|
|
|
demarcheURL: URL
|
|
|
|
|
demarcheUrl: URL @deprecated(reason: "Utilisez le champ `demarcheURL` à la place.")
|
2021-08-19 11:23:27 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description de la démarche.
|
|
|
|
|
"""
|
|
|
|
|
description: String!
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
URL ou email pour contacter le Délégué à la Protection des Données (DPO)
|
|
|
|
|
"""
|
2023-07-27 12:19:07 +02:00
|
|
|
|
dpoURL: String
|
|
|
|
|
dpoUrl: String @deprecated(reason: "Utilisez le champ `dpoURL` à la place.")
|
2022-11-24 13:16:37 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Durée de conservation des dossiers en mois.
|
|
|
|
|
"""
|
|
|
|
|
dureeConservationDossiers: Int!
|
2021-08-19 11:23:27 +02:00
|
|
|
|
id: ID!
|
2022-11-24 13:16:37 +01:00
|
|
|
|
logo: File
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
notice explicative de la démarche
|
|
|
|
|
"""
|
2022-11-24 13:16:37 +01:00
|
|
|
|
notice: File
|
2023-07-27 12:19:07 +02:00
|
|
|
|
noticeURL: URL
|
|
|
|
|
noticeUrl: URL @deprecated(reason: "Utilisez le champ `noticeURL` à la place.")
|
2021-08-19 11:23:27 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Numero de la démarche.
|
|
|
|
|
"""
|
|
|
|
|
number: Int!
|
2022-11-24 13:16:37 +01:00
|
|
|
|
opendata: Boolean!
|
2022-06-11 12:41:47 +02:00
|
|
|
|
revision: Revision!
|
2022-06-14 16:01:38 +02:00
|
|
|
|
service: Service
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
URL où les usagers trouvent le lien vers la démarche
|
|
|
|
|
"""
|
2023-07-27 12:19:07 +02:00
|
|
|
|
siteWebURL: String
|
|
|
|
|
siteWebUrl: String @deprecated(reason: "Utilisez le champ `siteWebURL` à la place.")
|
2021-08-19 11:23:27 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
État de la démarche.
|
|
|
|
|
"""
|
|
|
|
|
state: DemarcheState!
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
mots ou expressions attribués à la démarche pour décrire son contenu et la retrouver
|
|
|
|
|
"""
|
2022-11-24 13:16:37 +01:00
|
|
|
|
tags: [String!]!
|
2021-08-19 11:23:27 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Titre de la démarche.
|
2019-09-26 15:17:58 +02:00
|
|
|
|
"""
|
2018-11-20 22:21:38 +01:00
|
|
|
|
title: String!
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
ministère(s) ou collectivité(s) qui mettent en oeuvre la démarche
|
|
|
|
|
"""
|
2022-11-24 13:16:37 +01:00
|
|
|
|
zones: [String!]!
|
2018-11-20 22:21:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum DemarcheState {
|
|
|
|
|
"""
|
2019-11-14 09:43:45 +01:00
|
|
|
|
Brouillon
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-11-14 09:43:45 +01:00
|
|
|
|
brouillon
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
|
|
|
|
"""
|
2019-11-14 09:43:45 +01:00
|
|
|
|
Close
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-11-14 09:43:45 +01:00
|
|
|
|
close
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
2019-12-04 15:45:06 +01:00
|
|
|
|
"""
|
2023-04-19 18:29:18 +02:00
|
|
|
|
Dépubliée
|
2019-12-04 15:45:06 +01:00
|
|
|
|
"""
|
|
|
|
|
depubliee
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
Publiée
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
publiee
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-30 19:44:07 +01:00
|
|
|
|
type Departement {
|
|
|
|
|
code: String!
|
|
|
|
|
name: String!
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-21 09:24:37 +01:00
|
|
|
|
type DepartementChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2022-12-21 09:24:37 +01:00
|
|
|
|
departement: Departement
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-12-21 09:24:37 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2022-12-21 09:24:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type DepartementChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
2022-12-21 17:42:12 +01:00
|
|
|
|
List des departements.
|
2022-11-24 13:14:27 +01:00
|
|
|
|
"""
|
2022-12-21 17:42:12 +01:00
|
|
|
|
options: [Departement!]
|
2022-11-24 13:14:27 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type DgfipChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-17 18:11:34 +02:00
|
|
|
|
"""
|
|
|
|
|
Represents direct upload credentials
|
|
|
|
|
"""
|
|
|
|
|
type DirectUpload {
|
|
|
|
|
"""
|
|
|
|
|
Created blob record ID
|
|
|
|
|
"""
|
|
|
|
|
blobId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
HTTP request headers (JSON-encoded)
|
|
|
|
|
"""
|
|
|
|
|
headers: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Created blob record signed ID
|
|
|
|
|
"""
|
|
|
|
|
signedBlobId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Upload URL
|
|
|
|
|
"""
|
|
|
|
|
url: String!
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
Un dossier
|
|
|
|
|
"""
|
|
|
|
|
type Dossier {
|
2021-01-28 13:53:01 +01:00
|
|
|
|
annotations(id: ID): [Champ!]!
|
2019-09-18 18:45:53 +02:00
|
|
|
|
archived: Boolean!
|
2020-10-01 16:14:30 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’URL de l’attestation au format PDF.
|
|
|
|
|
"""
|
|
|
|
|
attestation: File
|
2021-01-28 13:53:01 +01:00
|
|
|
|
avis(id: ID): [Avis!]!
|
|
|
|
|
champs(id: ID): [Champ!]!
|
2023-05-23 17:39:48 +02:00
|
|
|
|
connectionUsager: ConnectionUsager!
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
2021-12-06 15:49:17 +01:00
|
|
|
|
"""
|
|
|
|
|
Date de dépôt.
|
|
|
|
|
"""
|
|
|
|
|
dateDepot: ISO8601DateTime!
|
|
|
|
|
|
2023-07-12 12:03:37 +02:00
|
|
|
|
"""
|
|
|
|
|
Date de la dernière demande de correction qui n’a pas encore été traitée par l’usager.
|
|
|
|
|
"""
|
|
|
|
|
dateDerniereCorrectionEnAttente: ISO8601DateTime
|
|
|
|
|
|
2019-09-26 15:17:58 +02:00
|
|
|
|
"""
|
|
|
|
|
Date de la dernière modification.
|
|
|
|
|
"""
|
|
|
|
|
dateDerniereModification: ISO8601DateTime!
|
|
|
|
|
|
2022-03-10 18:19:31 +01:00
|
|
|
|
"""
|
|
|
|
|
Date d’expiration.
|
|
|
|
|
"""
|
|
|
|
|
dateExpiration: ISO8601DateTime
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2021-12-06 15:49:17 +01:00
|
|
|
|
Date du dernier passage en construction.
|
2019-09-18 18:45:53 +02:00
|
|
|
|
"""
|
|
|
|
|
datePassageEnConstruction: ISO8601DateTime!
|
|
|
|
|
|
|
|
|
|
"""
|
2021-12-06 15:49:17 +01:00
|
|
|
|
Date du dernier passage en instruction.
|
2019-09-18 18:45:53 +02:00
|
|
|
|
"""
|
|
|
|
|
datePassageEnInstruction: ISO8601DateTime
|
|
|
|
|
|
2023-07-26 13:53:30 +02:00
|
|
|
|
"""
|
|
|
|
|
Date prévisionnelle de décision automatique par le SVA/SVR.
|
|
|
|
|
"""
|
|
|
|
|
datePrevisionnelleDecisionSVASVR: ISO8601Date
|
|
|
|
|
|
2022-03-10 18:19:31 +01:00
|
|
|
|
"""
|
|
|
|
|
Date de la suppression par l’administration.
|
|
|
|
|
"""
|
|
|
|
|
dateSuppressionParAdministration: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la suppression par l’usager.
|
|
|
|
|
"""
|
|
|
|
|
dateSuppressionParUsager: ISO8601DateTime
|
|
|
|
|
|
2019-09-18 18:45:53 +02:00
|
|
|
|
"""
|
2021-12-06 15:49:17 +01:00
|
|
|
|
Date du dernier traitement.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
dateTraitement: ISO8601DateTime
|
2023-07-26 13:53:30 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date du traitement automatique par le SVA/SVR.
|
|
|
|
|
"""
|
|
|
|
|
dateTraitementSVASVR: ISO8601DateTime
|
2019-11-21 18:52:07 +01:00
|
|
|
|
demandeur: Demandeur!
|
2021-08-19 11:23:27 +02:00
|
|
|
|
demarche: DemarcheDescriptor!
|
2024-02-19 17:33:26 +01:00
|
|
|
|
deposeParUnTiers: Boolean
|
2020-10-01 16:14:30 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’URL du GeoJSON contenant les données cartographiques du dossier.
|
|
|
|
|
"""
|
|
|
|
|
geojson: File
|
2020-02-27 18:37:19 +01:00
|
|
|
|
groupeInstructeur: GroupeInstructeur!
|
2018-11-20 22:21:38 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
instructeurs: [Profile!]!
|
2021-01-28 13:53:01 +01:00
|
|
|
|
messages(id: ID): [Message!]!
|
2018-11-20 22:21:38 +01:00
|
|
|
|
motivation: String
|
2019-12-11 12:24:50 +01:00
|
|
|
|
motivationAttachment: File
|
2024-02-19 17:33:26 +01:00
|
|
|
|
nomMandataire: String
|
2019-09-18 18:45:53 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le numero du dossier.
|
|
|
|
|
"""
|
2019-11-07 13:24:34 +01:00
|
|
|
|
number: Int!
|
2020-10-01 16:14:30 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’URL du dossier au format PDF.
|
|
|
|
|
"""
|
|
|
|
|
pdf: File
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2024-02-19 17:33:26 +01:00
|
|
|
|
prenomMandataire: String
|
2022-06-11 12:41:47 +02:00
|
|
|
|
revision: Revision! @deprecated(reason: "Utilisez le champ `demarche.revision` à la place.")
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
|
|
|
|
"""
|
2020-10-01 16:14:30 +02:00
|
|
|
|
L’état du dossier.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
state: DossierState!
|
2022-03-10 18:19:31 +01:00
|
|
|
|
traitements: [Traitement!]!
|
2023-12-06 20:17:30 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Profile de l'usager déposant le dossier
|
|
|
|
|
"""
|
2018-11-20 22:21:38 +01:00
|
|
|
|
usager: Profile!
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierAccepter
|
|
|
|
|
"""
|
|
|
|
|
input DossierAccepterInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
2021-09-01 15:11:11 +02:00
|
|
|
|
"""
|
|
|
|
|
Désactiver l’envoi de l’email de notification après l’opération
|
|
|
|
|
"""
|
|
|
|
|
disableNotification: Boolean = false
|
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui prend la décision sur le dossier.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
justificatif: ID
|
|
|
|
|
motivation: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierAccepter.
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
type DossierAccepterPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
dossier: Dossier
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 10:42:42 +02:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierArchiver
|
|
|
|
|
"""
|
|
|
|
|
input DossierArchiverInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui prend la décision sur le dossier.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierArchiver.
|
2020-08-19 10:42:42 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierArchiverPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
dossier: Dossier
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-21 11:57:36 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierChangerGroupeInstructeur
|
|
|
|
|
"""
|
|
|
|
|
input DossierChangerGroupeInstructeurInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Group instructeur a affecter
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeurId: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierChangerGroupeInstructeur.
|
2020-02-21 11:57:36 +01:00
|
|
|
|
"""
|
|
|
|
|
type DossierChangerGroupeInstructeurPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
dossier: Dossier
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierClasserSansSuite
|
|
|
|
|
"""
|
|
|
|
|
input DossierClasserSansSuiteInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
2021-09-01 15:11:11 +02:00
|
|
|
|
"""
|
|
|
|
|
Désactiver l’envoi de l’email de notification après l’opération
|
|
|
|
|
"""
|
|
|
|
|
disableNotification: Boolean = false
|
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui prend la décision sur le dossier.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
justificatif: ID
|
|
|
|
|
motivation: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierClasserSansSuite.
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
type DossierClasserSansSuitePayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
dossier: Dossier
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
The connection type for Dossier.
|
|
|
|
|
"""
|
|
|
|
|
type DossierConnection {
|
|
|
|
|
"""
|
|
|
|
|
A list of edges.
|
|
|
|
|
"""
|
|
|
|
|
edges: [DossierEdge]
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A list of nodes.
|
|
|
|
|
"""
|
|
|
|
|
nodes: [Dossier]
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Information to aid in pagination.
|
|
|
|
|
"""
|
|
|
|
|
pageInfo: PageInfo!
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 12:07:21 +01:00
|
|
|
|
enum DossierDeclarativeState {
|
|
|
|
|
"""
|
|
|
|
|
Accepté
|
|
|
|
|
"""
|
|
|
|
|
accepte
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
En instruction
|
|
|
|
|
"""
|
|
|
|
|
en_instruction
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
An edge in a connection.
|
|
|
|
|
"""
|
|
|
|
|
type DossierEdge {
|
|
|
|
|
"""
|
|
|
|
|
A cursor for use in pagination.
|
|
|
|
|
"""
|
|
|
|
|
cursor: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
The item at the end of the edge.
|
|
|
|
|
"""
|
|
|
|
|
node: Dossier
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-12 15:51:51 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierEnvoyerMessage
|
|
|
|
|
"""
|
|
|
|
|
input DossierEnvoyerMessageInput {
|
|
|
|
|
attachment: ID
|
|
|
|
|
body: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
2023-07-12 12:56:16 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Préciser qu’il s’agit d’une demande de correction. Le dossier repasssera en construction.
|
|
|
|
|
"""
|
|
|
|
|
correction: CorrectionReason
|
2019-11-12 15:51:51 +01:00
|
|
|
|
dossierId: ID!
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierEnvoyerMessage.
|
2019-11-12 15:51:51 +01:00
|
|
|
|
"""
|
|
|
|
|
type DossierEnvoyerMessagePayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
message: Message
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
type DossierLinkChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
dossier: Dossier
|
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type DossierLinkChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-21 14:54:14 +02:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierModifierAnnotationAjouterLigne
|
|
|
|
|
"""
|
|
|
|
|
input DossierModifierAnnotationAjouterLigneInput {
|
|
|
|
|
"""
|
|
|
|
|
Annotation ID
|
|
|
|
|
"""
|
|
|
|
|
annotationId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui demande la modification.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierModifierAnnotationAjouterLigne.
|
2022-07-21 14:54:14 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierModifierAnnotationAjouterLignePayload {
|
|
|
|
|
annotation: RepetitionChamp
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-28 18:16:03 +02:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierModifierAnnotationCheckbox
|
|
|
|
|
"""
|
|
|
|
|
input DossierModifierAnnotationCheckboxInput {
|
|
|
|
|
"""
|
|
|
|
|
Annotation ID
|
|
|
|
|
"""
|
|
|
|
|
annotationId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui demande la modification.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
value: Boolean!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierModifierAnnotationCheckbox.
|
2020-07-28 18:16:03 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierModifierAnnotationCheckboxPayload {
|
|
|
|
|
annotation: Champ
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierModifierAnnotationDate
|
|
|
|
|
"""
|
|
|
|
|
input DossierModifierAnnotationDateInput {
|
|
|
|
|
"""
|
|
|
|
|
Annotation ID
|
|
|
|
|
"""
|
|
|
|
|
annotationId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui demande la modification.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
value: ISO8601Date!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierModifierAnnotationDate.
|
2020-07-28 18:16:03 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierModifierAnnotationDatePayload {
|
|
|
|
|
annotation: Champ
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierModifierAnnotationDatetime
|
|
|
|
|
"""
|
|
|
|
|
input DossierModifierAnnotationDatetimeInput {
|
|
|
|
|
"""
|
|
|
|
|
Annotation ID
|
|
|
|
|
"""
|
|
|
|
|
annotationId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui demande la modification.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
value: ISO8601DateTime!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierModifierAnnotationDatetime.
|
2020-07-28 18:16:03 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierModifierAnnotationDatetimePayload {
|
|
|
|
|
annotation: Champ
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierModifierAnnotationIntegerNumber
|
|
|
|
|
"""
|
|
|
|
|
input DossierModifierAnnotationIntegerNumberInput {
|
|
|
|
|
"""
|
|
|
|
|
Annotation ID
|
|
|
|
|
"""
|
|
|
|
|
annotationId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui demande la modification.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
value: Int!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierModifierAnnotationIntegerNumber.
|
2020-07-28 18:16:03 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierModifierAnnotationIntegerNumberPayload {
|
|
|
|
|
annotation: Champ
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierModifierAnnotationText
|
|
|
|
|
"""
|
|
|
|
|
input DossierModifierAnnotationTextInput {
|
|
|
|
|
"""
|
|
|
|
|
Annotation ID
|
|
|
|
|
"""
|
|
|
|
|
annotationId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui demande la modification.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
value: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierModifierAnnotationText.
|
2020-07-28 18:16:03 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierModifierAnnotationTextPayload {
|
|
|
|
|
annotation: Champ
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierPasserEnInstruction
|
|
|
|
|
"""
|
|
|
|
|
input DossierPasserEnInstructionInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
2021-09-01 15:11:11 +02:00
|
|
|
|
"""
|
|
|
|
|
Désactiver l’envoi de l’email de notification après l’opération
|
|
|
|
|
"""
|
|
|
|
|
disableNotification: Boolean = false
|
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui prend la décision sur le dossier.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierPasserEnInstruction.
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
type DossierPasserEnInstructionPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
dossier: Dossier
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierRefuser
|
|
|
|
|
"""
|
|
|
|
|
input DossierRefuserInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
2021-09-01 15:11:11 +02:00
|
|
|
|
"""
|
|
|
|
|
Désactiver l’envoi de l’email de notification après l’opération
|
|
|
|
|
"""
|
|
|
|
|
disableNotification: Boolean = false
|
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui prend la décision sur le dossier.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
justificatif: ID
|
|
|
|
|
motivation: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierRefuser.
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
type DossierRefuserPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
dossier: Dossier
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-20 19:01:54 +02:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierRepasserEnConstruction
|
|
|
|
|
"""
|
|
|
|
|
input DossierRepasserEnConstructionInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Désactiver l’envoi de l’email de notification après l’opération
|
|
|
|
|
"""
|
|
|
|
|
disableNotification: Boolean = false
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui prend la décision sur le dossier.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierRepasserEnConstruction.
|
2022-05-20 19:01:54 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierRepasserEnConstructionPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
dossier: Dossier
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of DossierRepasserEnInstruction
|
|
|
|
|
"""
|
|
|
|
|
input DossierRepasserEnInstructionInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Désactiver l’envoi de l’email de notification après l’opération
|
|
|
|
|
"""
|
|
|
|
|
disableNotification: Boolean = false
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossier ID
|
|
|
|
|
"""
|
|
|
|
|
dossierId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeur qui prend la décision sur le dossier.
|
|
|
|
|
"""
|
|
|
|
|
instructeurId: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
2022-10-31 11:49:41 +01:00
|
|
|
|
Autogenerated return type of DossierRepasserEnInstruction.
|
2022-05-20 19:01:54 +02:00
|
|
|
|
"""
|
|
|
|
|
type DossierRepasserEnInstructionPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
dossier: Dossier
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
enum DossierState {
|
|
|
|
|
"""
|
|
|
|
|
Accepté
|
|
|
|
|
"""
|
|
|
|
|
accepte
|
|
|
|
|
|
|
|
|
|
"""
|
2023-04-18 13:09:22 +02:00
|
|
|
|
En construction
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
en_construction
|
|
|
|
|
|
|
|
|
|
"""
|
2023-04-18 13:09:22 +02:00
|
|
|
|
En instruction
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
en_instruction
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Refusé
|
|
|
|
|
"""
|
|
|
|
|
refuse
|
|
|
|
|
|
|
|
|
|
"""
|
2023-04-18 13:09:22 +02:00
|
|
|
|
Classé sans suite
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
sans_suite
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type DropDownListChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
2020-04-21 15:52:08 +02:00
|
|
|
|
|
2020-09-22 09:30:28 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Description du champ.
|
2020-09-22 09:30:28 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
2020-04-22 19:00:25 +02:00
|
|
|
|
|
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Libellé du champ.
|
2020-04-22 19:00:25 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
label: String!
|
2020-04-22 19:00:25 +02:00
|
|
|
|
|
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
List des options d’un champ avec selection.
|
2020-04-22 19:00:25 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
options: [String!]
|
2019-11-21 18:52:07 +01:00
|
|
|
|
|
2022-07-18 14:43:01 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
La selection contien l’option "Autre".
|
2022-07-18 14:43:01 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
otherOption: Boolean
|
2022-07-18 14:43:01 +02:00
|
|
|
|
|
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Est-ce que le champ est obligatoire ?
|
2022-07-18 14:43:01 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Effectif {
|
|
|
|
|
nb: Float!
|
|
|
|
|
periode: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type EmailChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-21 14:22:15 +01:00
|
|
|
|
type EngagementJuridique {
|
|
|
|
|
montantEngage: String
|
|
|
|
|
montantPaye: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type EngagementJuridiqueChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
|
|
|
|
|
2023-12-21 14:22:15 +01:00
|
|
|
|
"""
|
|
|
|
|
Montant engagé et payé de l'EJ.
|
|
|
|
|
"""
|
|
|
|
|
engagementJuridique: EngagementJuridique
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
prefilled: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-20 09:51:32 +02:00
|
|
|
|
type EngagementJuridiqueChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type Entreprise {
|
|
|
|
|
attestationFiscaleAttachment: File
|
|
|
|
|
attestationSocialeAttachment: File
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
capital social de l’entreprise. -1 si inconnu.
|
|
|
|
|
"""
|
|
|
|
|
capitalSocial: BigInt
|
|
|
|
|
codeEffectifEntreprise: String
|
|
|
|
|
dateCreation: ISO8601Date
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
effectif moyen d’une année
|
|
|
|
|
"""
|
|
|
|
|
effectifAnnuel: Effectif
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
effectif pour un mois donné
|
|
|
|
|
"""
|
|
|
|
|
effectifMensuel: Effectif
|
2023-11-15 15:58:29 +01:00
|
|
|
|
enseigne: String
|
2022-11-24 13:14:27 +01:00
|
|
|
|
etatAdministratif: EntrepriseEtatAdministratif
|
|
|
|
|
formeJuridique: String
|
|
|
|
|
formeJuridiqueCode: String
|
|
|
|
|
inlineAdresse: String!
|
|
|
|
|
nom: String
|
|
|
|
|
nomCommercial: String!
|
|
|
|
|
numeroTvaIntracommunautaire: String
|
|
|
|
|
prenom: String
|
|
|
|
|
raisonSociale: String!
|
|
|
|
|
siren: String!
|
|
|
|
|
siretSiegeSocial: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum EntrepriseEtatAdministratif {
|
|
|
|
|
"""
|
|
|
|
|
L'entreprise est en activité
|
|
|
|
|
"""
|
|
|
|
|
Actif
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L'entreprise a cessé son activité
|
|
|
|
|
"""
|
|
|
|
|
Ferme
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-19 09:43:19 +01:00
|
|
|
|
type Epci {
|
|
|
|
|
code: String!
|
|
|
|
|
name: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type EpciChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2023-01-19 09:43:19 +01:00
|
|
|
|
departement: Departement
|
|
|
|
|
epci: Epci
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2023-01-19 09:43:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2023-01-19 09:43:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type EpciChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type ExplicationChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
collapsibleExplanationEnabled: Boolean
|
|
|
|
|
collapsibleExplanationText: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
2022-07-18 14:43:01 +02:00
|
|
|
|
|
2023-10-10 15:42:43 +02:00
|
|
|
|
type ExpressionReguliereChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-11 12:24:50 +01:00
|
|
|
|
type File {
|
2021-06-02 15:16:35 +02:00
|
|
|
|
byteSize: Int! @deprecated(reason: "Utilisez le champ `byteSizeBigInt` à la place.")
|
|
|
|
|
byteSizeBigInt: BigInt!
|
2019-12-11 12:24:50 +01:00
|
|
|
|
checksum: String!
|
|
|
|
|
contentType: String!
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de création du fichier.
|
|
|
|
|
"""
|
|
|
|
|
createdAt: ISO8601DateTime!
|
2019-12-11 12:24:50 +01:00
|
|
|
|
filename: String!
|
|
|
|
|
url: URL!
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-23 20:47:22 +01:00
|
|
|
|
input FindDemarcheInput @oneOf {
|
|
|
|
|
"""
|
|
|
|
|
ID de la démarche.
|
|
|
|
|
"""
|
|
|
|
|
id: ID
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Numero de la démarche.
|
|
|
|
|
"""
|
|
|
|
|
number: Int
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
interface GeoArea {
|
2021-05-25 12:59:11 +02:00
|
|
|
|
description: String
|
2019-08-28 11:25:41 +02:00
|
|
|
|
geometry: GeoJSON!
|
2019-09-18 18:45:53 +02:00
|
|
|
|
id: ID!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
source: GeoAreaSource!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum GeoAreaSource {
|
|
|
|
|
"""
|
2019-11-07 13:52:48 +01:00
|
|
|
|
Parcelle cadastrale
|
2019-08-28 11:25:41 +02:00
|
|
|
|
"""
|
|
|
|
|
cadastre
|
|
|
|
|
|
|
|
|
|
"""
|
2019-11-07 13:52:48 +01:00
|
|
|
|
Sélection utilisateur
|
2019-08-28 11:25:41 +02:00
|
|
|
|
"""
|
|
|
|
|
selection_utilisateur
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type GeoJSON {
|
|
|
|
|
coordinates: Coordinates!
|
|
|
|
|
type: String!
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-24 19:41:48 +02:00
|
|
|
|
"""
|
|
|
|
|
Un groupe instructeur
|
|
|
|
|
"""
|
|
|
|
|
type GroupeInstructeur {
|
2022-11-23 09:10:39 +01:00
|
|
|
|
"""
|
|
|
|
|
L’état du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
closed: Boolean!
|
2019-09-24 19:41:48 +02:00
|
|
|
|
id: ID!
|
|
|
|
|
instructeurs: [Profile!]!
|
2022-11-23 09:10:39 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du groupe instructeur.
|
|
|
|
|
"""
|
2019-09-24 19:41:48 +02:00
|
|
|
|
label: String!
|
2020-04-08 19:30:16 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le numero du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
number: Int!
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-10 17:20:22 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of GroupeInstructeurAjouterInstructeurs
|
|
|
|
|
"""
|
|
|
|
|
input GroupeInstructeurAjouterInstructeursInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Groupe instructeur ID.
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeurId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeurs à ajouter.
|
|
|
|
|
"""
|
|
|
|
|
instructeurs: [ProfileInput!]!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated return type of GroupeInstructeurAjouterInstructeurs.
|
|
|
|
|
"""
|
|
|
|
|
type GroupeInstructeurAjouterInstructeursPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
groupeInstructeur: GroupeInstructeur
|
|
|
|
|
warnings: [WarningMessage!]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Attributs pour l’ajout d'un groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
input GroupeInstructeurAttributes {
|
|
|
|
|
"""
|
|
|
|
|
L’état du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
closed: Boolean = false
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeurs à ajouter.
|
|
|
|
|
"""
|
|
|
|
|
instructeurs: [ProfileInput!] = []
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libelle du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of GroupeInstructeurCreer
|
|
|
|
|
"""
|
|
|
|
|
input GroupeInstructeurCreerInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Demarche ID ou numéro.
|
|
|
|
|
"""
|
|
|
|
|
demarche: FindDemarcheInput!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Groupes instructeur à ajouter.
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeur: GroupeInstructeurAttributes!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated return type of GroupeInstructeurCreer.
|
|
|
|
|
"""
|
|
|
|
|
type GroupeInstructeurCreerPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
groupeInstructeur: GroupeInstructeur
|
|
|
|
|
warnings: [WarningMessage!]
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-23 09:10:39 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of GroupeInstructeurModifier
|
|
|
|
|
"""
|
|
|
|
|
input GroupeInstructeurModifierInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’état du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
closed: Boolean
|
|
|
|
|
|
|
|
|
|
"""
|
2023-01-10 17:20:22 +01:00
|
|
|
|
Groupe instructeur ID.
|
2022-11-23 09:10:39 +01:00
|
|
|
|
"""
|
|
|
|
|
groupeInstructeurId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
label: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated return type of GroupeInstructeurModifier.
|
|
|
|
|
"""
|
|
|
|
|
type GroupeInstructeurModifierPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
groupeInstructeur: GroupeInstructeur
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-10 17:20:22 +01:00
|
|
|
|
"""
|
|
|
|
|
Autogenerated input type of GroupeInstructeurSupprimerInstructeurs
|
|
|
|
|
"""
|
|
|
|
|
input GroupeInstructeurSupprimerInstructeursInput {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Groupe instructeur ID.
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeurId: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Instructeurs à supprimer.
|
|
|
|
|
"""
|
|
|
|
|
instructeurs: [ProfileInput!]!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autogenerated return type of GroupeInstructeurSupprimerInstructeurs.
|
|
|
|
|
"""
|
|
|
|
|
type GroupeInstructeurSupprimerInstructeursPayload {
|
|
|
|
|
"""
|
|
|
|
|
A unique identifier for the client performing the mutation.
|
|
|
|
|
"""
|
|
|
|
|
clientMutationId: String
|
|
|
|
|
errors: [ValidationError!]
|
|
|
|
|
groupeInstructeur: GroupeInstructeur
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
2022-11-02 13:18:18 +01:00
|
|
|
|
Un groupe instructeur avec ses dossiers
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
|
|
|
|
type GroupeInstructeurWithDossiers {
|
2022-11-23 09:10:39 +01:00
|
|
|
|
"""
|
|
|
|
|
L’état du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
closed: Boolean!
|
|
|
|
|
|
2022-11-04 10:07:56 +01:00
|
|
|
|
"""
|
|
|
|
|
Liste de tous les dossiers supprimés d’un groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
deletedDossiers(
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come after the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
after: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come before the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
before: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossiers supprimés depuis la date.
|
|
|
|
|
"""
|
|
|
|
|
deletedSince: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the first _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
first: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the last _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
last: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’ordre des dossiers supprimés.
|
|
|
|
|
"""
|
2023-07-21 16:20:31 +02:00
|
|
|
|
order: Order = ASC @deprecated(reason: "Utilisez l’argument `last` à la place.")
|
2022-11-04 10:07:56 +01:00
|
|
|
|
): DeletedDossierConnection!
|
|
|
|
|
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
2022-11-02 13:18:18 +01:00
|
|
|
|
Liste de tous les dossiers d’un groupe instructeur.
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
|
|
|
|
dossiers(
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come after the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
after: String
|
|
|
|
|
|
2022-11-02 13:18:18 +01:00
|
|
|
|
"""
|
|
|
|
|
Seulement les dossiers archivés.
|
|
|
|
|
"""
|
|
|
|
|
archived: Boolean
|
|
|
|
|
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come before the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
before: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossiers déposés depuis la date.
|
|
|
|
|
"""
|
|
|
|
|
createdSince: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the first _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
first: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the last _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
last: Int
|
|
|
|
|
|
2022-11-02 13:18:18 +01:00
|
|
|
|
"""
|
|
|
|
|
Seulement les dossiers pour les révisons avant la révision donnée.
|
|
|
|
|
"""
|
|
|
|
|
maxRevision: ID
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Seulement les dossiers pour les révisons après la révision donnée.
|
|
|
|
|
"""
|
|
|
|
|
minRevision: ID
|
|
|
|
|
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
2020-10-01 16:14:30 +02:00
|
|
|
|
L’ordre des dossiers.
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
2023-07-21 16:20:31 +02:00
|
|
|
|
order: Order = ASC @deprecated(reason: "Utilisez l’argument `last` à la place.")
|
2020-04-08 19:30:16 +02:00
|
|
|
|
|
2022-11-02 13:18:18 +01:00
|
|
|
|
"""
|
|
|
|
|
Seulement les dossiers pour la révision donnée.
|
|
|
|
|
"""
|
|
|
|
|
revision: ID
|
|
|
|
|
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
|
|
|
|
Dossiers avec statut.
|
|
|
|
|
"""
|
|
|
|
|
state: DossierState
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossiers mis à jour depuis la date.
|
|
|
|
|
"""
|
|
|
|
|
updatedSince: ISO8601DateTime
|
|
|
|
|
): DossierConnection!
|
|
|
|
|
id: ID!
|
|
|
|
|
instructeurs: [Profile!]!
|
2022-11-23 09:10:39 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du groupe instructeur.
|
|
|
|
|
"""
|
2020-04-08 19:30:16 +02:00
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Le numero du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
number: Int!
|
2023-04-11 10:11:08 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Liste de tous les dossiers en attente de suppression définitive d’un groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
pendingDeletedDossiers(
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come after the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
after: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the elements in the list that come before the specified cursor.
|
|
|
|
|
"""
|
|
|
|
|
before: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Dossiers en attente de suppression depuis la date.
|
|
|
|
|
"""
|
|
|
|
|
deletedSince: ISO8601DateTime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the first _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
first: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Returns the last _n_ elements from the list.
|
|
|
|
|
"""
|
|
|
|
|
last: Int
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
L’ordre des dossiers en attente de suppression.
|
|
|
|
|
"""
|
2023-07-21 16:20:31 +02:00
|
|
|
|
order: Order = ASC @deprecated(reason: "Utilisez l’argument `last` à la place.")
|
2023-04-11 10:11:08 +02:00
|
|
|
|
): DeletedDossierConnection!
|
2019-09-24 19:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type HeaderSectionChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 18:52:07 +01:00
|
|
|
|
"""
|
|
|
|
|
An ISO 8601-encoded date
|
|
|
|
|
"""
|
|
|
|
|
scalar ISO8601Date
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
An ISO 8601-encoded datetime
|
|
|
|
|
"""
|
|
|
|
|
scalar ISO8601DateTime
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type IbanChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
2019-08-28 11:25:41 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type IntegerNumberChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-09-18 18:45:53 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
value: BigInt
|
2019-09-18 18:45:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type IntegerNumberChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
2019-09-18 18:45:53 +02:00
|
|
|
|
id: ID!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
2019-09-18 18:45:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type LinkedDropDownListChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-09-18 18:45:53 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
primaryValue: String
|
|
|
|
|
secondaryValue: String
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2018-11-23 18:54:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type LinkedDropDownListChampDescriptor implements ChampDescriptor {
|
2019-09-17 18:11:34 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Description des champs d’un bloc répétable.
|
2019-09-17 18:11:34 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
2019-11-12 15:51:51 +01:00
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Description du champ.
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
2019-11-13 20:01:58 +01:00
|
|
|
|
|
2020-08-19 10:42:42 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Libellé du champ.
|
2020-08-19 10:42:42 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
List des options d’un champ avec selection.
|
|
|
|
|
"""
|
|
|
|
|
options: [String!]
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MesriChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Message {
|
|
|
|
|
attachment: File @deprecated(reason: "Utilisez le champ `attachments` à la place.")
|
|
|
|
|
attachments: [File!]!
|
|
|
|
|
body: String!
|
2023-07-12 12:03:37 +02:00
|
|
|
|
correction: Correction
|
2022-11-24 13:14:27 +01:00
|
|
|
|
createdAt: ISO8601DateTime!
|
|
|
|
|
email: String!
|
|
|
|
|
id: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MultipleDropDownListChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
values: [String!]!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MultipleDropDownListChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
List des options d’un champ avec selection.
|
|
|
|
|
"""
|
|
|
|
|
options: [String!]
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Mutation {
|
|
|
|
|
"""
|
|
|
|
|
File information required to prepare a direct upload
|
|
|
|
|
"""
|
|
|
|
|
createDirectUpload(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for CreateDirectUpload
|
|
|
|
|
"""
|
|
|
|
|
input: CreateDirectUploadInput!
|
|
|
|
|
): CreateDirectUploadPayload
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Cloner une démarche.
|
|
|
|
|
"""
|
|
|
|
|
demarcheCloner(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DemarcheCloner
|
|
|
|
|
"""
|
|
|
|
|
input: DemarcheClonerInput!
|
|
|
|
|
): DemarcheClonerPayload
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Accepter le dossier.
|
|
|
|
|
"""
|
|
|
|
|
dossierAccepter(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierAccepter
|
|
|
|
|
"""
|
|
|
|
|
input: DossierAccepterInput!
|
|
|
|
|
): DossierAccepterPayload
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Archiver le dossier.
|
|
|
|
|
"""
|
|
|
|
|
dossierArchiver(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierArchiver
|
|
|
|
|
"""
|
|
|
|
|
input: DossierArchiverInput!
|
|
|
|
|
): DossierArchiverPayload
|
2020-08-19 10:42:42 +02:00
|
|
|
|
|
2020-02-21 11:57:36 +01:00
|
|
|
|
"""
|
|
|
|
|
Changer le grope instructeur du dossier.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierChangerGroupeInstructeur(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierChangerGroupeInstructeur
|
|
|
|
|
"""
|
|
|
|
|
input: DossierChangerGroupeInstructeurInput!
|
|
|
|
|
): DossierChangerGroupeInstructeurPayload
|
2020-02-21 11:57:36 +01:00
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Classer le dossier sans suite.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierClasserSansSuite(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierClasserSansSuite
|
|
|
|
|
"""
|
|
|
|
|
input: DossierClasserSansSuiteInput!
|
|
|
|
|
): DossierClasserSansSuitePayload
|
2019-11-13 20:01:58 +01:00
|
|
|
|
|
2019-11-12 15:51:51 +01:00
|
|
|
|
"""
|
|
|
|
|
Envoyer un message à l'usager du dossier.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierEnvoyerMessage(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierEnvoyerMessage
|
|
|
|
|
"""
|
|
|
|
|
input: DossierEnvoyerMessageInput!
|
|
|
|
|
): DossierEnvoyerMessagePayload
|
2022-07-21 14:54:14 +02:00
|
|
|
|
dossierModifierAnnotationAjouterLigne(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierModifierAnnotationAjouterLigne
|
|
|
|
|
"""
|
|
|
|
|
input: DossierModifierAnnotationAjouterLigneInput!
|
|
|
|
|
): DossierModifierAnnotationAjouterLignePayload
|
2019-11-13 20:01:58 +01:00
|
|
|
|
|
2020-07-28 18:16:03 +02:00
|
|
|
|
"""
|
|
|
|
|
Modifier l’annotation au format oui/non.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierModifierAnnotationCheckbox(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierModifierAnnotationCheckbox
|
|
|
|
|
"""
|
|
|
|
|
input: DossierModifierAnnotationCheckboxInput!
|
|
|
|
|
): DossierModifierAnnotationCheckboxPayload
|
2020-07-28 18:16:03 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Modifier l’annotation au format date.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierModifierAnnotationDate(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierModifierAnnotationDate
|
|
|
|
|
"""
|
|
|
|
|
input: DossierModifierAnnotationDateInput!
|
|
|
|
|
): DossierModifierAnnotationDatePayload
|
2020-07-28 18:16:03 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Modifier l’annotation au format date et heure.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierModifierAnnotationDatetime(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierModifierAnnotationDatetime
|
|
|
|
|
"""
|
|
|
|
|
input: DossierModifierAnnotationDatetimeInput!
|
|
|
|
|
): DossierModifierAnnotationDatetimePayload
|
2020-07-28 18:16:03 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Modifier l’annotation au format nombre entier.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierModifierAnnotationIntegerNumber(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierModifierAnnotationIntegerNumber
|
|
|
|
|
"""
|
|
|
|
|
input: DossierModifierAnnotationIntegerNumberInput!
|
|
|
|
|
): DossierModifierAnnotationIntegerNumberPayload
|
2020-07-28 18:16:03 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Modifier l’annotation au format text.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierModifierAnnotationText(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierModifierAnnotationText
|
|
|
|
|
"""
|
|
|
|
|
input: DossierModifierAnnotationTextInput!
|
|
|
|
|
): DossierModifierAnnotationTextPayload
|
2020-07-28 18:16:03 +02:00
|
|
|
|
|
2019-11-13 20:01:58 +01:00
|
|
|
|
"""
|
|
|
|
|
Passer le dossier en instruction.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierPasserEnInstruction(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierPasserEnInstruction
|
|
|
|
|
"""
|
|
|
|
|
input: DossierPasserEnInstructionInput!
|
|
|
|
|
): DossierPasserEnInstructionPayload
|
2019-11-13 20:01:58 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Refuser le dossier.
|
|
|
|
|
"""
|
2021-02-16 16:29:04 +01:00
|
|
|
|
dossierRefuser(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierRefuser
|
|
|
|
|
"""
|
|
|
|
|
input: DossierRefuserInput!
|
|
|
|
|
): DossierRefuserPayload
|
2022-05-20 19:01:54 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Re-passer le dossier en construction.
|
|
|
|
|
"""
|
|
|
|
|
dossierRepasserEnConstruction(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierRepasserEnConstruction
|
|
|
|
|
"""
|
|
|
|
|
input: DossierRepasserEnConstructionInput!
|
|
|
|
|
): DossierRepasserEnConstructionPayload
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Re-passer le dossier en instruction.
|
|
|
|
|
"""
|
|
|
|
|
dossierRepasserEnInstruction(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for DossierRepasserEnInstruction
|
|
|
|
|
"""
|
|
|
|
|
input: DossierRepasserEnInstructionInput!
|
|
|
|
|
): DossierRepasserEnInstructionPayload
|
2022-11-23 09:10:39 +01:00
|
|
|
|
|
2023-01-10 17:20:22 +01:00
|
|
|
|
"""
|
|
|
|
|
Ajouter des instructeurs à un groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeurAjouterInstructeurs(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for GroupeInstructeurAjouterInstructeurs
|
|
|
|
|
"""
|
|
|
|
|
input: GroupeInstructeurAjouterInstructeursInput!
|
|
|
|
|
): GroupeInstructeurAjouterInstructeursPayload
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Crée un groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeurCreer(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for GroupeInstructeurCreer
|
|
|
|
|
"""
|
|
|
|
|
input: GroupeInstructeurCreerInput!
|
|
|
|
|
): GroupeInstructeurCreerPayload
|
|
|
|
|
|
2022-11-23 09:10:39 +01:00
|
|
|
|
"""
|
|
|
|
|
Modifier un groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeurModifier(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for GroupeInstructeurModifier
|
|
|
|
|
"""
|
|
|
|
|
input: GroupeInstructeurModifierInput!
|
|
|
|
|
): GroupeInstructeurModifierPayload
|
2023-01-10 17:20:22 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Supprimer des instructeurs d’un groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeurSupprimerInstructeurs(
|
|
|
|
|
"""
|
|
|
|
|
Parameters for GroupeInstructeurSupprimerInstructeurs
|
|
|
|
|
"""
|
|
|
|
|
input: GroupeInstructeurSupprimerInstructeursInput!
|
|
|
|
|
): GroupeInstructeurSupprimerInstructeursPayload
|
2018-11-20 22:21:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type NumberChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-26 14:57:58 +02:00
|
|
|
|
enum Order {
|
|
|
|
|
"""
|
2021-05-26 15:09:23 +02:00
|
|
|
|
L’ordre ascendant.
|
2019-09-26 14:57:58 +02:00
|
|
|
|
"""
|
|
|
|
|
ASC
|
|
|
|
|
|
|
|
|
|
"""
|
2021-05-26 15:09:23 +02:00
|
|
|
|
L’ordre descendant.
|
2019-09-26 14:57:58 +02:00
|
|
|
|
"""
|
|
|
|
|
DESC
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
Information about pagination in a connection.
|
|
|
|
|
"""
|
|
|
|
|
type PageInfo {
|
|
|
|
|
"""
|
|
|
|
|
When paginating forwards, the cursor to continue.
|
|
|
|
|
"""
|
|
|
|
|
endCursor: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
When paginating forwards, are there more items?
|
|
|
|
|
"""
|
|
|
|
|
hasNextPage: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
When paginating backwards, are there more items?
|
|
|
|
|
"""
|
|
|
|
|
hasPreviousPage: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
When paginating backwards, the cursor to continue.
|
|
|
|
|
"""
|
|
|
|
|
startCursor: String
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
type ParcelleCadastrale implements GeoArea {
|
2021-05-06 18:50:06 +02:00
|
|
|
|
codeArr: String! @deprecated(reason: "Utilisez le champ `prefixe` à la place.")
|
|
|
|
|
codeCom: String! @deprecated(reason: "Utilisez le champ `commune` à la place.")
|
|
|
|
|
codeDep: String! @deprecated(reason: "Utilisez le champ `commune` à la place.")
|
|
|
|
|
commune: String!
|
2021-05-25 12:59:11 +02:00
|
|
|
|
description: String
|
2021-05-26 15:09:23 +02:00
|
|
|
|
feuille: Int! @deprecated(reason: "L’information n’est plus disponible.")
|
2019-08-28 11:25:41 +02:00
|
|
|
|
geometry: GeoJSON!
|
2019-09-18 18:45:53 +02:00
|
|
|
|
id: ID!
|
2021-05-06 18:50:06 +02:00
|
|
|
|
nomCom: String! @deprecated(reason: "Utilisez le champ `commune` à la place.")
|
2019-08-28 11:25:41 +02:00
|
|
|
|
numero: String!
|
2021-05-06 18:50:06 +02:00
|
|
|
|
prefixe: String!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
section: String!
|
|
|
|
|
source: GeoAreaSource!
|
2021-05-06 18:50:06 +02:00
|
|
|
|
surface: String!
|
2021-05-26 15:09:23 +02:00
|
|
|
|
surfaceIntersection: Float! @deprecated(reason: "L’information n’est plus disponible.")
|
2021-05-06 18:50:06 +02:00
|
|
|
|
surfaceParcelle: Float! @deprecated(reason: "Utilisez le champ `surface` à la place.")
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-21 17:35:05 +01:00
|
|
|
|
type Pays {
|
|
|
|
|
code: String!
|
|
|
|
|
name: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PaysChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2022-12-21 17:35:05 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
pays: Pays
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-12-21 17:35:05 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2022-12-21 17:35:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type PaysChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
2022-12-21 17:42:12 +01:00
|
|
|
|
List des pays.
|
2022-11-24 13:14:27 +01:00
|
|
|
|
"""
|
2022-12-21 17:42:12 +01:00
|
|
|
|
options: [Pays!]
|
2022-11-24 13:14:27 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 18:52:07 +01:00
|
|
|
|
type PersonneMorale implements Demandeur {
|
2021-02-17 14:04:33 +01:00
|
|
|
|
address: Address!
|
|
|
|
|
adresse: String! @deprecated(reason: "Utilisez le champ `address.label` à la place.")
|
2019-11-21 18:52:07 +01:00
|
|
|
|
association: Association
|
2021-02-17 14:04:33 +01:00
|
|
|
|
codeInseeLocalite: String! @deprecated(reason: "Utilisez le champ `address.city_code` à la place.")
|
|
|
|
|
codePostal: String! @deprecated(reason: "Utilisez le champ `address.postal_code` à la place.")
|
|
|
|
|
complementAdresse: String @deprecated(reason: "Utilisez le champ `address` à la place.")
|
2019-11-21 18:52:07 +01:00
|
|
|
|
entreprise: Entreprise
|
|
|
|
|
id: ID!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
libelleNaf: String!
|
2021-02-17 14:04:33 +01:00
|
|
|
|
localite: String! @deprecated(reason: "Utilisez le champ `address.city_name` à la place.")
|
2022-12-28 15:26:32 +01:00
|
|
|
|
naf: String
|
2021-02-17 14:04:33 +01:00
|
|
|
|
nomVoie: String @deprecated(reason: "Utilisez le champ `address.street_name` à la place.")
|
|
|
|
|
numeroVoie: String @deprecated(reason: "Utilisez le champ `address.street_number` à la place.")
|
2019-11-21 18:52:07 +01:00
|
|
|
|
siegeSocial: Boolean!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
siret: String!
|
2021-02-17 14:04:33 +01:00
|
|
|
|
typeVoie: String @deprecated(reason: "Utilisez le champ `address.street_address` à la place.")
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-04-04 16:58:47 +02:00
|
|
|
|
type PersonneMoraleIncomplete implements Demandeur {
|
|
|
|
|
id: ID!
|
|
|
|
|
siret: String!
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 18:52:07 +01:00
|
|
|
|
type PersonnePhysique implements Demandeur {
|
|
|
|
|
civilite: Civilite
|
|
|
|
|
dateDeNaissance: ISO8601Date
|
2024-02-28 06:20:25 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Email du bénéficiaire (dans le cas d'un dossier déposé par et pour l'usager
|
|
|
|
|
connecté, l'email est celui de l'usager connecté. Dans le cas d'un dossier
|
|
|
|
|
déposé pour un bénéficiaire, l'email est celui du bénéficiaire, s'il a été renseigné)
|
|
|
|
|
"""
|
|
|
|
|
email: String
|
2019-11-21 18:52:07 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
nom: String!
|
|
|
|
|
prenom: String!
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type PhoneChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PieceJustificativeChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
file: File @deprecated(reason: "Utilisez le champ `files` à la place.")
|
|
|
|
|
files: [File!]!
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PieceJustificativeChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Modèle de la pièce justificative.
|
|
|
|
|
"""
|
|
|
|
|
fileTemplate: File
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PoleEmploiChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 20:17:30 +01:00
|
|
|
|
"""
|
|
|
|
|
Profil d'un usager connecté (déposant un dossier, instruisant un dossier...)
|
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type Profile {
|
2023-12-06 20:17:30 +01:00
|
|
|
|
"""
|
|
|
|
|
Email de l'usager
|
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
email: String!
|
|
|
|
|
id: ID!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input ProfileInput @oneOf {
|
|
|
|
|
"""
|
|
|
|
|
Email
|
|
|
|
|
"""
|
|
|
|
|
email: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
ID
|
|
|
|
|
"""
|
|
|
|
|
id: ID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Query {
|
|
|
|
|
"""
|
|
|
|
|
Informations concernant une démarche.
|
|
|
|
|
"""
|
|
|
|
|
demarche(
|
|
|
|
|
"""
|
|
|
|
|
Numéro de la démarche.
|
|
|
|
|
"""
|
|
|
|
|
number: Int!
|
|
|
|
|
): Demarche!
|
|
|
|
|
demarcheDescriptor(
|
|
|
|
|
"""
|
|
|
|
|
La démarche.
|
|
|
|
|
"""
|
|
|
|
|
demarche: FindDemarcheInput!
|
|
|
|
|
): DemarcheDescriptor
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Informations sur un dossier d’une démarche.
|
|
|
|
|
"""
|
|
|
|
|
dossier(
|
|
|
|
|
"""
|
|
|
|
|
Numéro du dossier.
|
|
|
|
|
"""
|
|
|
|
|
number: Int!
|
|
|
|
|
): Dossier!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Informations sur un groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
groupeInstructeur(
|
|
|
|
|
"""
|
|
|
|
|
Numéro du groupe instructeur.
|
|
|
|
|
"""
|
|
|
|
|
number: Int!
|
|
|
|
|
): GroupeInstructeurWithDossiers!
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-05 18:47:40 +01:00
|
|
|
|
type RNA {
|
|
|
|
|
address: Address
|
|
|
|
|
id: String!
|
|
|
|
|
title: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type RNAChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2024-02-05 18:47:40 +01:00
|
|
|
|
commune: Commune
|
|
|
|
|
departement: Departement
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
prefilled: Boolean!
|
|
|
|
|
rna: RNA
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type RNAChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-22 09:50:56 +01:00
|
|
|
|
type RNF {
|
|
|
|
|
address: Address
|
|
|
|
|
id: String!
|
|
|
|
|
title: String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type RNFChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2023-11-17 12:48:25 +01:00
|
|
|
|
commune: Commune
|
|
|
|
|
departement: Departement
|
2023-11-22 09:50:56 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
prefilled: Boolean!
|
|
|
|
|
rnf: RNF
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-27 14:22:00 +02:00
|
|
|
|
type RNFChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type Region {
|
|
|
|
|
code: String!
|
|
|
|
|
name: String!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type RegionChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
region: Region
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type RegionChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
2023-01-10 17:20:22 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Description du champ.
|
2023-01-10 17:20:22 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
2023-01-10 17:20:22 +01:00
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Libellé du champ.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
label: String!
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
|
|
|
|
"""
|
2022-12-21 17:42:12 +01:00
|
|
|
|
List des regions.
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
2022-12-21 17:42:12 +01:00
|
|
|
|
options: [Region!]
|
2020-04-08 19:30:16 +02:00
|
|
|
|
|
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
Est-ce que le champ est obligatoire ?
|
2020-04-08 19:30:16 +02:00
|
|
|
|
"""
|
2022-11-24 13:14:27 +01:00
|
|
|
|
required: Boolean!
|
2018-11-20 22:21:38 +01:00
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
2022-12-21 09:24:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type RepetitionChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
champs: [Champ!]! @deprecated(reason: "Utilisez le champ `rows` à la place.")
|
2022-12-21 09:24:37 +01:00
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2022-11-24 13:14:27 +01:00
|
|
|
|
rows: [Row!]!
|
2022-12-21 09:24:37 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2022-12-21 09:24:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type RepetitionChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!]
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
2019-08-28 11:25:41 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 12:48:35 +02:00
|
|
|
|
type Revision {
|
|
|
|
|
annotationDescriptors: [ChampDescriptor!]!
|
|
|
|
|
champDescriptors: [ChampDescriptor!]!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la création.
|
|
|
|
|
"""
|
|
|
|
|
dateCreation: ISO8601DateTime!
|
2021-01-21 19:02:23 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de la publication.
|
|
|
|
|
"""
|
|
|
|
|
datePublication: ISO8601DateTime
|
2020-07-16 12:48:35 +02:00
|
|
|
|
id: ID!
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-01 14:51:34 +01:00
|
|
|
|
type Row {
|
|
|
|
|
champs: [Champ!]!
|
2022-12-16 15:07:26 +01:00
|
|
|
|
id: ID!
|
2022-11-01 14:51:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
type SelectionUtilisateur implements GeoArea {
|
2021-05-25 12:59:11 +02:00
|
|
|
|
description: String
|
2019-08-28 11:25:41 +02:00
|
|
|
|
geometry: GeoJSON!
|
2019-09-18 18:45:53 +02:00
|
|
|
|
id: ID!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
source: GeoAreaSource!
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-29 12:45:58 +01:00
|
|
|
|
type Service {
|
|
|
|
|
id: ID!
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
nom du service qui met en oeuvre la démarche
|
|
|
|
|
"""
|
2019-11-29 12:45:58 +01:00
|
|
|
|
nom: String!
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
nom de l'organisme qui met en oeuvre la démarche
|
|
|
|
|
"""
|
2019-11-29 12:45:58 +01:00
|
|
|
|
organisme: String!
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
n° siret du service qui met en oeuvre la démarche
|
|
|
|
|
"""
|
2022-07-25 18:41:53 +02:00
|
|
|
|
siret: String
|
2023-03-21 16:14:36 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
type d'organisme qui met en oeuvre la démarche
|
|
|
|
|
"""
|
2019-11-29 12:45:58 +01:00
|
|
|
|
typeOrganisme: TypeOrganisme!
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
type SiretChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
etablissement: PersonneMorale
|
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type SiretChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 11:25:41 +02:00
|
|
|
|
type TextChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
id: ID!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
2019-08-28 11:25:41 +02:00
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2019-11-07 13:34:19 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
2019-09-18 18:45:53 +02:00
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2019-08-28 11:25:41 +02:00
|
|
|
|
value: String
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type TextChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type TextareaChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 12:02:14 +02:00
|
|
|
|
type TitreIdentiteChamp implements Champ {
|
2024-03-21 10:21:19 +01:00
|
|
|
|
"""
|
|
|
|
|
L'identifiant du champDescriptor de ce champ
|
|
|
|
|
"""
|
|
|
|
|
champDescriptorId: String!
|
2022-11-08 18:00:28 +01:00
|
|
|
|
filled: Boolean!
|
2020-09-24 12:02:14 +02:00
|
|
|
|
grantType: TitreIdentiteGrantType!
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
2023-11-07 11:28:23 +01:00
|
|
|
|
prefilled: Boolean!
|
2020-09-24 12:02:14 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
La valeur du champ sous forme texte.
|
|
|
|
|
"""
|
|
|
|
|
stringValue: String
|
2023-07-12 11:06:42 +02:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date de dernière modification du champ.
|
|
|
|
|
"""
|
|
|
|
|
updatedAt: ISO8601DateTime!
|
2020-09-24 12:02:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 13:14:27 +01:00
|
|
|
|
type TitreIdentiteChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 12:02:14 +02:00
|
|
|
|
enum TitreIdentiteGrantType {
|
|
|
|
|
"""
|
|
|
|
|
Françe Connect
|
|
|
|
|
"""
|
|
|
|
|
france_connect
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Pièce justificative
|
|
|
|
|
"""
|
|
|
|
|
piece_justificative
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-10 18:19:31 +01:00
|
|
|
|
type Traitement {
|
|
|
|
|
dateTraitement: ISO8601DateTime!
|
|
|
|
|
emailAgentTraitant: String
|
|
|
|
|
id: ID!
|
|
|
|
|
motivation: String
|
|
|
|
|
state: DossierState!
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
enum TypeDeChamp {
|
|
|
|
|
"""
|
|
|
|
|
Adresse
|
|
|
|
|
"""
|
|
|
|
|
address
|
|
|
|
|
|
2021-01-14 17:29:57 +01:00
|
|
|
|
"""
|
|
|
|
|
Annuaire de l’éducation
|
|
|
|
|
"""
|
|
|
|
|
annuaire_education
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
Carte
|
|
|
|
|
"""
|
|
|
|
|
carte
|
|
|
|
|
|
|
|
|
|
"""
|
2022-11-28 17:41:46 +01:00
|
|
|
|
Case à cocher seule
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
checkbox
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Civilité
|
|
|
|
|
"""
|
|
|
|
|
civilite
|
|
|
|
|
|
2021-09-24 14:21:13 +02:00
|
|
|
|
"""
|
|
|
|
|
Données de la Caisse nationale des allocations familiales
|
|
|
|
|
"""
|
|
|
|
|
cnaf
|
|
|
|
|
|
2023-05-30 14:42:36 +02:00
|
|
|
|
"""
|
|
|
|
|
Accréditation Paris 2024
|
|
|
|
|
"""
|
|
|
|
|
cojo
|
|
|
|
|
|
2020-01-14 18:46:07 +01:00
|
|
|
|
"""
|
|
|
|
|
Communes
|
|
|
|
|
"""
|
|
|
|
|
communes
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
Date
|
|
|
|
|
"""
|
|
|
|
|
date
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Date et Heure
|
|
|
|
|
"""
|
|
|
|
|
datetime
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Nombre décimal
|
|
|
|
|
"""
|
|
|
|
|
decimal_number
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Départements
|
|
|
|
|
"""
|
|
|
|
|
departements
|
|
|
|
|
|
2021-11-24 17:30:35 +01:00
|
|
|
|
"""
|
|
|
|
|
Données de la Direction générale des Finances publiques
|
|
|
|
|
"""
|
|
|
|
|
dgfip
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
Lien vers un autre dossier
|
|
|
|
|
"""
|
|
|
|
|
dossier_link
|
|
|
|
|
|
|
|
|
|
"""
|
2022-11-28 17:41:46 +01:00
|
|
|
|
Choix simple
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
drop_down_list
|
|
|
|
|
|
|
|
|
|
"""
|
2022-11-28 17:41:46 +01:00
|
|
|
|
Adresse électronique
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
email
|
|
|
|
|
|
2023-10-20 09:51:32 +02:00
|
|
|
|
"""
|
|
|
|
|
Translation missing: fr.activerecord.attributes.type_de_champ.type_champs.engagement_juridique
|
|
|
|
|
"""
|
|
|
|
|
engagement_juridique
|
|
|
|
|
|
2023-01-19 09:43:19 +01:00
|
|
|
|
"""
|
|
|
|
|
EPCI
|
|
|
|
|
"""
|
|
|
|
|
epci
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
Explication
|
|
|
|
|
"""
|
|
|
|
|
explication
|
|
|
|
|
|
2023-10-10 15:42:43 +02:00
|
|
|
|
"""
|
|
|
|
|
Expression régulière
|
|
|
|
|
"""
|
|
|
|
|
expression_reguliere
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
Titre de section
|
|
|
|
|
"""
|
|
|
|
|
header_section
|
|
|
|
|
|
2020-09-22 16:04:57 +02:00
|
|
|
|
"""
|
2022-11-28 17:41:46 +01:00
|
|
|
|
Numéro Iban
|
2020-09-22 16:04:57 +02:00
|
|
|
|
"""
|
|
|
|
|
iban
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
Nombre entier
|
|
|
|
|
"""
|
|
|
|
|
integer_number
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Deux menus déroulants liés
|
|
|
|
|
"""
|
|
|
|
|
linked_drop_down_list
|
|
|
|
|
|
2021-12-15 15:25:02 +01:00
|
|
|
|
"""
|
2022-12-01 13:41:12 +01:00
|
|
|
|
Données du Ministère de l’Enseignement Supérieur, de la Recherche et de l’Innovation
|
2021-12-15 15:25:02 +01:00
|
|
|
|
"""
|
|
|
|
|
mesri
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
2022-11-28 17:41:46 +01:00
|
|
|
|
Choix multiple
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
multiple_drop_down_list
|
|
|
|
|
|
|
|
|
|
"""
|
2019-10-16 17:37:40 +02:00
|
|
|
|
Nombre
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
number
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Pays
|
|
|
|
|
"""
|
|
|
|
|
pays
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Téléphone
|
|
|
|
|
"""
|
|
|
|
|
phone
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Pièce justificative
|
|
|
|
|
"""
|
|
|
|
|
piece_justificative
|
|
|
|
|
|
2021-12-01 10:21:30 +01:00
|
|
|
|
"""
|
|
|
|
|
Situation Pôle emploi
|
|
|
|
|
"""
|
|
|
|
|
pole_emploi
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
Régions
|
|
|
|
|
"""
|
|
|
|
|
regions
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Bloc répétable
|
|
|
|
|
"""
|
|
|
|
|
repetition
|
|
|
|
|
|
2022-09-22 17:30:51 +02:00
|
|
|
|
"""
|
2023-11-07 11:39:15 +01:00
|
|
|
|
RNA (Répertoire national des associations)
|
2022-09-22 17:30:51 +02:00
|
|
|
|
"""
|
|
|
|
|
rna
|
|
|
|
|
|
2023-10-27 14:22:00 +02:00
|
|
|
|
"""
|
2023-11-07 11:39:15 +01:00
|
|
|
|
RNF (Répertoire national des fondations)
|
2023-10-27 14:22:00 +02:00
|
|
|
|
"""
|
|
|
|
|
rnf
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
2022-11-28 17:41:46 +01:00
|
|
|
|
Numéro Siret
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
siret
|
|
|
|
|
|
|
|
|
|
"""
|
2022-11-28 17:41:46 +01:00
|
|
|
|
Texte court
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
text
|
|
|
|
|
|
|
|
|
|
"""
|
2022-11-28 17:41:46 +01:00
|
|
|
|
Texte long
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
textarea
|
|
|
|
|
|
2020-09-17 17:09:16 +02:00
|
|
|
|
"""
|
|
|
|
|
Titre identité
|
|
|
|
|
"""
|
|
|
|
|
titre_identite
|
|
|
|
|
|
2018-11-23 18:55:54 +01:00
|
|
|
|
"""
|
|
|
|
|
Oui/Non
|
|
|
|
|
"""
|
|
|
|
|
yes_no
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-29 12:45:58 +01:00
|
|
|
|
enum TypeOrganisme {
|
|
|
|
|
"""
|
|
|
|
|
Administration centrale
|
|
|
|
|
"""
|
|
|
|
|
administration_centrale
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Association
|
|
|
|
|
"""
|
|
|
|
|
association
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Autre
|
|
|
|
|
"""
|
|
|
|
|
autre
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Collectivité territoriale
|
|
|
|
|
"""
|
|
|
|
|
collectivite_territoriale
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Établissement d’enseignement
|
|
|
|
|
"""
|
|
|
|
|
etablissement_enseignement
|
|
|
|
|
|
|
|
|
|
"""
|
2020-03-26 16:59:53 +01:00
|
|
|
|
Opérateur d’État
|
2019-11-29 12:45:58 +01:00
|
|
|
|
"""
|
|
|
|
|
operateur_d_etat
|
|
|
|
|
|
|
|
|
|
"""
|
2020-03-26 16:59:53 +01:00
|
|
|
|
Service déconcentré de l’État
|
2019-11-29 12:45:58 +01:00
|
|
|
|
"""
|
|
|
|
|
service_deconcentre_de_l_etat
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 22:21:38 +01:00
|
|
|
|
"""
|
|
|
|
|
A valid URL, transported as a string
|
|
|
|
|
"""
|
2019-11-12 15:51:51 +01:00
|
|
|
|
scalar URL
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Éreur de validation
|
|
|
|
|
"""
|
|
|
|
|
type ValidationError {
|
|
|
|
|
"""
|
|
|
|
|
A description of the error
|
|
|
|
|
"""
|
|
|
|
|
message: String!
|
2022-12-06 13:34:39 +01:00
|
|
|
|
}
|
2023-01-10 17:20:22 +01:00
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Message d’alerte
|
|
|
|
|
"""
|
|
|
|
|
type WarningMessage {
|
|
|
|
|
"""
|
|
|
|
|
La description de l’alerte
|
|
|
|
|
"""
|
|
|
|
|
message: String!
|
|
|
|
|
}
|
2022-11-24 13:14:27 +01:00
|
|
|
|
|
|
|
|
|
type YesNoChampDescriptor implements ChampDescriptor {
|
|
|
|
|
"""
|
|
|
|
|
Description des champs d’un bloc répétable.
|
|
|
|
|
"""
|
|
|
|
|
champDescriptors: [ChampDescriptor!] @deprecated(reason: "Utilisez le champ `RepetitionChampDescriptor.champ_descriptors` à la place.")
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Description du champ.
|
|
|
|
|
"""
|
|
|
|
|
description: String
|
|
|
|
|
id: ID!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Libellé du champ.
|
|
|
|
|
"""
|
|
|
|
|
label: String!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Est-ce que le champ est obligatoire ?
|
|
|
|
|
"""
|
|
|
|
|
required: Boolean!
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Type de la valeur du champ.
|
|
|
|
|
"""
|
|
|
|
|
type: TypeDeChamp! @deprecated(reason: "Utilisez le champ `__typename` à la place.")
|
|
|
|
|
}
|